Does anyone know of a way to specify a wildcard/fo...
# orm-help
h
Does anyone know of a way to specify a wildcard/folder to use in the
prisma.yml
datamodel
key? At the moment, I have about 40 lines under this key, one for each model file, and have to maintain it for each model added/removed. I.e.
Copy code
endpoint: [myendpoint]
datamodel:
- model/address.graphql
- model/campaign.graphql
- model/user.graphql
...
It would be awesome if it could be written as
Copy code
endpoint: [myendpoint]
datamodel:
- model/**/*.graphql
...
or something