Is it possible to use `import` with the `datamodel...
# orm-help
e
Is it possible to use
import
with the
datamodel.prisma
when doing
prisma deploy
? Like: https://oss.prisma.io/content/graphql-import/overview Or are there other methods to define the
datamodel
across multiple files, making it modular?
v
Hi, you can define your datamodel across multiple files:
Copy code
# prisma.yml

datamodel:
  - database/types.prisma
  - database/enums.prisma
  - database/foo.prisma
  - database/bar.prisma
e
Ah yes!! I thought I had seen this before, but could not find it anywhere! Searching around for too long. THANK YOU! 😁
v
easy
e
I was looking for the wording
modular
and
import
going through all the documentation. Thank you for linking it. 👍