Skip to content
Last updated

Errors

GraphQL errors return a standard { "errors": [...] } payload with message and extensions.code.

SituationTypical response
Missing tokenHTTP 401 or GraphQL auth error
Invalid tokenAuthentication failure
Validation errorGRAPHQL_VALIDATION_FAILED
Permission deniedField or operation not allowed for app scope
Debug before production

Use the in-app playground to validate queries and inspect error payloads.

Common fixes

  • 401 — Check x-app-token header and app isEnabled status
  • Permission denied — App user group may not include the operation; adjust scopes in /developer/apps
  • Validation — Field names and arguments must match the schema reference