When prisma generates the client, what is it using...
# orm-help
c
When prisma generates the client, what is it using to do so exactly? The
databasemodel.prisma
? The
schema.graphql
? All of the resolver function definitions? I ask b/c I have a bug when starting my service and I think it’s in the generated client, so I’m trying to comment things out until I get it working again.
Copy code
/node_modules/graphql/language/parser.js:1433
  throw (0, _error.syntaxError)(lexer.source, token.start, "Expected ".concat(kind, ", found ").concat((0, _lexer.getTokenDesc)(token)));
  ^
GraphQLError: Syntax Error: Expected Name, found }
    at syntaxError (/Users/coreysnyder/Development/Web/GraphQL/drone-part-picker/server/node_modules/graphql/error/syntaxError.js:24:10)
f
It’s using the .prisma file, your datamodel. Are you using the client in an apollo server or something like that?