Errors
Authentication errors
{
"errors": [
{ "message": "Unauthorized", "extensions": { "code": "UNAUTHORIZED" } }
]
}GraphQL errors
{
"errors": [
{
"message": "Field 'notAField' doesn't exist on type 'Organization'",
"locations": [{ "line": 1, "column": 20 }],
"path": ["query", "organization", "notAField"],
"extensions": {
"code": "undefinedField",
"typeName": "Organization",
"fieldName": "notAField"
}
}
]
}Mutation errors
Common messages
Message
Where
Cause
Checking errors in a script
Last updated