You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running prisma deploy to generate prisma.graphql.
"graphql-cli": "^2.15.9"
"prisma": "^1.6.3",
When I start my graphql-yoga server, it gives the following error:
Type "Node" is missing a "resolveType" resolver. Pass false into "resolverValidationOptions.requireResolversForResolveType" to disable this warning.
Deep in my prisma.graphql file, I'm finding the code below. It looks like the comment """The ID of an object""" is commenting out the rest of my .graphql file although it doesn't seem to impact the running of the server. Is this related? Is it a problem?
type Query {
[INSERT MULTIPLE QUERIES HERE]
"""
Fetches an object given its ID
"""
node("""
The ID of an object
"""
id: ID!): Node
}
enum Region {
NORTH_AMERICA
EUROPE
ASIA
ROW
GLOBAL
}
The text was updated successfully, but these errors were encountered:
I'm running
prisma deploy
to generateprisma.graphql
.When I start my
graphql-yoga
server, it gives the following error:Deep in my
prisma.graphql
file, I'm finding the code below. It looks like the comment"""The ID of an object"""
is commenting out the rest of my.graphql
file although it doesn't seem to impact the running of the server. Is this related? Is it a problem?The text was updated successfully, but these errors were encountered: