diff options
Diffstat (limited to 'backend/src/index.js')
| -rw-r--r-- | backend/src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/index.js b/backend/src/index.js index 359456f..22cc9ef 100644 --- a/backend/src/index.js +++ b/backend/src/index.js @@ -19,7 +19,7 @@ const server = new GraphQLServer({ typeDefs: 'src/generated/prisma.graphql', endpoint: process.env.PRISMA_ENDPOINT, // the endpoint of the Prisma DB service (value is set in .env) secret: process.env.PRISMA_SECRET, // taken from database/prisma.yml (value is set in .env) - debug: true, // log all GraphQL queries & mutations + debug: false, // log all GraphQL queries & mutations }), }), }); |
