GraphQL API queries

There is a single, non-versioned endpoint for all queries to cantabular-metadata that allows metadata to be requested for datasets loaded into a companion cantabular-server service.

/graphql[?query=<GraphQL query>]

An API explorer can be accessed by visiting the above bare endpoint in a web browser. This explorer uses a third party application called GraphiQL as an interactive GraphQL IDE which fully describes the set of objects, fields, types and relationships that are available for a client to access.

Requests and responses

A GraphQL request takes the form of a string—the GraphQL query itself—that describes the shape of the data a user wants from the API. GraphQL queries return only the data you specify in your request.

All GraphQL queries can be sent via GET or POST requests and take the following form:

query {
  # Definition of fields to return
}

Responses from the endpoint are in JSON. All responses, including errors, return a HTTP 200 OK status code. They can contain keys for "data" and "errors" but the latter is only included when the GraphQL query includes an error.

If an unknown combination of dataset name and lang is provided, then the service will attempt to fallback to the default language. If no dataset exists with this name for the default language then a GraphQL error will be thrown.

If an unknown variable name is provided, then a null value will be returned at the corresponding location in the returned list of variable metadata.

More detailed documentation on GraphQL requests and responses can be found in the documentation for the Cantabular Extended API service and in the official GraphQL documentation.

Digests and ETags

The digest field available on the Query type contains a hash of the entire metadata content loaded into the metadata service. This can be used by software or by users to confirm whether metadata content has changed.

The metadata service itself uses the digest as one input into an ETag header that is included in all HTTP responses and can be used by caching services to automatically cache fetched content.

Example query and response

Shown below is a simple example query for service metadata in Welsh and dataset metadata in English. It makes use of the example metadata shown above.

query {
  digest
  service(lang: "cy") {
    meta {
      copyright
      license
    }
    tables {
      name
      label
      datasetName
      vars
    }
  }
  dataset(name: "Example", lang: "en") {
    name
    description
    meta {
      units
    }
    vars(names: ["city", "siblings"]) {
      name
      description
      meta {
        url
      }
    }
  }
}

Using the example data above, this would result in the following JSON response:

{
  "data": {
    "dataset": {
      "description": "A small example dataset used only for validation of a Cantabular installation.",
      "meta": {
        "units": "people"
      },
      "name": "Example",
      "vars": [
        {
          "description": "The city in which a person lives.",
          "meta": {
            "url": "https://www.example.com"
          },
          "name": "city"
        },
        {
          "description": "The number of brothers or sisters, including half-brothers and half-sisters, that a person has.",
          "meta": {
            "url": "https://www.example.com"
          },
          "name": "siblings"
        }
      ]
    },
    "digest": "1958daa3856b65599588a656ba7fad9c",
    "service": {
      "meta": {
        "copyright": "Darperir yr holl ddata o dan drwydded agored.",
        "license": "https://creativecommons.org/share-your-work/public-domain/cc0"
      },
      "tables": [
        {
          "datasetName": "Example",
          "label": "Rhyw gan frodyr a chwiorydd ar gyfer pob dinas",
          "name": "sex-siblings-city",
          "vars": [
            "city",
            "sex",
            "siblings_3"
          ]
        }
      ]
    }
  }
}