How to troubleshoot Unexpected Execution Error in GraphQL?

Viewed 22

I am receiving an Unexpected Execution Error in my query result and was wondering how I would better understand the error. What does Unexpected Execution Error mean?

{
   "errors":[
      {
         "message":"Unexpected Execution Error",
         "locations":[
            {
               "line":2,
               "column":3
            }
         ],
         "path":[
            "createProfile"
         ]
      }
   ],
   "data":{
      
   }
}
0 Answers
Related