Skip to content

Latest commit

 

History

History
85 lines (57 loc) · 1.26 KB

api.md

File metadata and controls

85 lines (57 loc) · 1.26 KB

Federated Gateway: API

TODO: add description

Table of Contents

Types

Before we cover the API operations we need to talk about a few GQL types defined by this service. TODO: add types description

Back to Top

Policy

TODO: add policy summary

inputs

TODO: add inputs

Back to Top

enums

TODO: add enums if any

Back to Top

scalar

TODO: add scalars if any

Back to Top

Queries

healthcheck

Health check query verifies the Federated Gateway service is working.

TODO: update health check query as necessary

query {
  healthcheck
}

If successful this query will return the services health status.

{
  "data": {
    "healthcheck": {
      "status": "ok"
    }
  }
}

Back to Top

Mutations

TODO: add mutations

Back to Top

Further Reading

Back to Top