---
title: "GraphQL API Documentation"
description: "We chose to use `spectaql` as a quick way to generate a static HTML webpage for our GraphQL API reference, because it generates documentation based on a GraphQL schema. For generating documentation based on a schema, `spectaql` uses [Handlebars](https://handlebarsjs.com/) and [Microfiber](https://www.npmjs.com/package/microfiber)."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/readme-352
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:36:23.836Z
license: CC-BY-4.0
attribution: "GraphQL API Documentation — Claudary (https://claudary.paisolsolutions.com/skills/readme-352)"
---

# GraphQL API Documentation
We chose to use `spectaql` as a quick way to generate a static HTML webpage for our GraphQL API reference, because it generates documentation based on a GraphQL schema. For generating documentation based on a schema, `spectaql` uses [Handlebars](https://handlebarsjs.com/) and [Microfiber](https://www.npmjs.com/package/microfiber).

## Overview

# GraphQL API Documentation

## Context

We chose to use `spectaql` as a quick way to generate a static HTML webpage for our GraphQL API reference, because it generates documentation based on a GraphQL schema. For generating documentation based on a schema, `spectaql` uses [Handlebars](https://handlebarsjs.com/) and [Microfiber](https://www.npmjs.com/package/microfiber).

In order to tailor the documentation to our needs, we have to override the current styling and data produced from the schema.

## Examples Generation

The examples are rendered with `spectaql` with the use of [helpers](https://github.com/anvilco/spectaql/tree/1c125e0c735f354337b18c4bd773759c4e65075b/src/themes/default/helpers) that live in the default theme. Helpers are a core concept in Handlebars.

The examples live in the [`./data/examples`](./data/examples/) folder and are read at the time of generation with a script that lives in [`./custom-theme/data/index.js`](`./custom-theme/data/index.js`).

The script does not fail if there is a missing example for a given query, but it outputs the results to the console with a warning.

## Introduction Content

To modify the content in the introduction section, modify the info field in [the configuration file](./config.yml).

## Debugging

A good way to debug the metadata extracted from the core schema is to write a file with the output.
You can do this by adding the following line inside the `website/docs-graphql/custom-theme/data/index.js` file.

```bash
  fs.writeFileSync(path.resolve(`${__dirname}/../../data/introspection.json`), JSON.stringify(introspectionResponse, null, 2))
```

This will write the introspection response to the `data/introspection.json` file.

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/readme-352) · https://claudary.paisolsolutions.com
