anton-b
03/06/2018, 1:22 PManton-b
03/06/2018, 1:23 PManton-b
03/06/2018, 1:26 PMagartha
03/06/2018, 1:52 PMprisma-binding
anton-b
03/06/2018, 2:18 PMprisma.graphql
file that is added to the src/generated folder based on my datamodel.graphql in the /database folder.agartha
03/06/2018, 2:22 PMsrc
for every separate service, specify in your .graphqlconfig that the prisma.graphql
should go into a 'shared' folder, and create additional 'app' projects in your .graphqlconfig
for each service, each with its own public schema.agartha
03/06/2018, 2:22 PMprojects:
app:
schemaPath: "src/schema.graphql"
extensions:
endpoints:
default: "<http://localhost:4000>"
app2:
schemaPath: "app2/schema.graphql"
extensions:
endpoints:
default: "<http://localhost:4010>"
database:
schemaPath: "/shared/generated/prisma.graphql"
extensions:
prisma: database/prisma.yml
agartha
03/06/2018, 2:25 PMagartha
03/06/2018, 2:26 PManton-b
03/06/2018, 2:31 PMagartha
03/06/2018, 2:31 PManton-b
03/06/2018, 2:33 PM