GraphQL

Use and integrate fairu into your application using GraphQL.

Our GraphQL endpoint is available under https://fairu.app/graphql

To allow this endpoint to be integrated into a GraphQL Router (like Apollo Router) we prefix our queries and types with "fairu". eg:

query HealthCheck {
  fairuHealthCheck {
    version
    healthy
  }
}

Every type also provides Entities which allows you to just store the id of our entity and let the rest be resolved by our service.