GraphQL.Execution.QueryMissingError: GraphQL query is missing." #999
Replies: 6 comments
-
Which GraphQL.NET nuget packages have you installed? Can you copy and paste the payload that is sent to your server from Playground? Preferably, headers also (no need for authorization header). |
Beta Was this translation helpful? Give feedback.
-
Hi @Shane32 Below are the GraphQL versions. And I am actually not sending any payload so far. Just trying to view the schema. Its not even loading that. |
Beta Was this translation helpful? Give feedback.
-
I think some server exception may be in your logs. |
Beta Was this translation helpful? Give feedback.
-
Playground is sending an introspection request via GraphQL in order to display the schema. You can use the F12 key in Chrome to view the network logs, and then view the request, response, headers, etc. |
Beta Was this translation helpful? Give feedback.
-
Just FYI, |
Beta Was this translation helpful? Give feedback.
-
Yes, In the network tab I was able to figure out the issue. It was throwing an exception because I was using nested List Objects and I didn't register it as types. |
Beta Was this translation helpful? Give feedback.
-
I am trying to setup GraphQL playground but I am facing this error.
When I inspect it lead me to this one
"errors":[{"message":"GraphQL query is missing.","extensions":{"code":"QUERY_MISSING","codes":["QUERY_MISSING"],"details":"GraphQL.Execution.QueryMissingError: GraphQL query is missing."}}]}
My Configurations look like as follows
`// Add GraphQL
I don't understand what am I missing here? Any help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions