GraphErr in Action


See what the graphErr library can add to your GraphQL queries, or try it out yourself.
Install graphErr


Making a GraphQL Query

Here is an example query in the GraphQL playground:

    query {
      allUsers {
        username
      }
    }
            
The response would look like:
example query response

GraphErr Functionality



Example #1: Null Response

Standard GraphQL response:
example query response

Extended graphErr response:
example query response


Example #2: Native GraphQL Error

Standard GraphQL response:
example query response

Extended graphErr response:
example query response