I figured out that the error occurs because of thi...
# orm-help
e
I figured out that the error occurs because of this line of code:
Copy code
const server = new GraphQLServer({
    typeDefs: './schema.graphql', <-- This line invokes the syntax error for some reason..
    resolvers,
    context: { 
      prisma
    },
  })
  server.start(() => console.log('Server is running on <http://localhost:4000'>))