The plugin adds a new command graphql-to-doc to the Docusaurus CLI.
npx docusaurus graphql-to-doc
Command line options are described in the section Options.
Configuration
You can define some or all of the plugin options directly at the plugin level in the Docusaurus configuration file docusaurus.config.js:
module.exports={// ...plugins: [["@edno/docusaurus2-graphql-doc-generator",{schema: "./schema/swapi.graphql",rootPath: "./docs",// docs will be generated under './docs/swapi' (rootPath/baseURL)baseURL: "swapi",homepage: "./docs/swapi.md",},],],};
See multi-instance section, if you want to use 2 distinct schemas.
Site Settings
You will also need to add a link to your documentation on your site. One way to do it is to add it to your site's navbar in docusaurus.config.js:
module.exports={// ...navbar: {items: [{to: "/swapi/homepage",// adjust the location depending on your baseURL (see configuration)label: "SWAPI Schema",// change the label with yoursposition: "left",},],},};
For more details about navbar, please refer to Docusaurus 2 documentation.
Sidebars Settings
A sidebar file sidebar-schema.js will be generated for the documentation, you have different options depending on your Docusaurus setup:
1. Single Docs instance
In this use case, you have a unique set of documentation, then you just need to add a reference to sidebar-schema.js into the default sidebar.js.
module.exports={docsSidebar: [// ... your site's sidebar],
...require("./docs/swapi/sidebar-schema.js"),};
Important
The sidebar path must be relative to the sidebars.js location. By default, the plugin provides a relative path from the root folder of Docusaurus.
For example, if your sidebars.js is located under ./src folder, then you need to go one level up in the path: ./../docs/swapi/sidebar-schema
2. Docs Multi-instance
In this use case, you have multiple sets of documentation (a.k.a. Docs Multi-instance), then you need to add a reference to sidebar-schema.js into the dedicated instance of @docusaurus/plugin-content-docs:
plugins: [["@docusaurus/plugin-content-docs",{id: "api",path: "api",routeBasePath: "api",sidebarPath: require.resolve("./api/sidebar-schema.js"),// ... other options},],],
Plugin Multi-instance
To add another instance, you need to assign a unique id attribute to plugin instances (if not set, then id value is default).
plugins: [["@edno/docusaurus2-graphql-doc-generator",{// id: 'swapi', // omitted => default instanceschema: "./schema/swapi.graphql",rootPath: "./docs",// docs will be generated under './docs/swapi' (rootPath/baseURL)baseURL: "swapi",homepage: "./docs/swapi.md",},],["@edno/docusaurus2-graphql-doc-generator",{id: "admin",schema: "./schema/admin.graphql",rootPath: "./docs",// docs will be generated under './docs/admin' (rootPath/baseURL)baseURL: "admin",homepage: "./docs/admin.md",},],],
Instance with an id will have their own command line:
npx docusaurus graphql-to-doc:admin
Options
By default, the plugin will use the options as defined in the plugin's configuration, but they can be overridden by passing them with the command.
Config File
CLI Flag
Default
Description
baseURL
-b, --base <baseURL>
schema
The base URL to be used by Docusaurus. It will also be used as folder name under rootPath for the generated documentation.
diffMethod
-d, --diff <diffMethod>
SCHEMA-DIFF
The method to be used for identifying changes in the schema for triggering the documentation generation. The possible values are: - SCHEMA-DIFF: use GraphQL Inspector for identifying changes in the schema (including description) - SCHEMA-HASH: use the schema SHA-256 hash for identifying changes in the schema (this method is sensitive to white spaces and invisible characters) Any other value will disable the change detection.
The location of the landing page to be used for the documentation, relative to the current workspace. The file will be copied at the root folder of the generated documentation. By default, the plugin provides a default page assets/generated.md.
linkRoot
-l, --link <linkRoot>
/
The root for links in documentation. It depends on the entry for the schema main page in the Docusaurus sidebar.
Use prettier to format generated files. The package prettier has to be installed separately. If prettier is not present, then the formatting will be always skipped.
rootPath
-r, --root <rootPath>
./docs
The output root path for the generated documentation, relative to the current workspace. The final path will be rootPath/baseURL.
schema
-s, --schema <schema>
./schema.graphql
The schema location. It should be compatible with the GraphQL Tools schema loaders (see Loaders).
tmpDir
-t, --tmp <tmpDir>
OS temp folder
The folder used for storing schema copy and signature used by diffMethod.
-f, --force
-
Force documentation generation (bypass diff).
Documentation options
Use these options to tweak some of the Docusaurus documentation features:
docOptions.pagination: page buttons Previous and Next (default: true)
docOptions.toc: page table of content (default: true)
docOptions.index: generate index page for categories/groups, see Docusaurus documentation (default: false)
plugins: [["@edno/docusaurus2-graphql-doc-generator",{schema: "./schema/swapi.graphql",rootPath: "./docs",baseURL: "swapi",homepage: "./docs/swapi.md",docOptions: {pagination: false,// disable buttons previous and next, same as cli flag --noPaginationtoc: false,// disable page table of content, same as cli flag --noTocindex: true,// enable generated index pages, same as cli flag --index},},],],
Plugin Loaders
graphql-file-loader, the local file loader, is provided out-of-the-box. Thus, by default, the schema default loading expects a local GraphQL schema definition file (*.graphql).
Additional GraphQL document loaders can be used (see full list).
For example, if you want to load a schema from a URL, you first need to install the package @graphql-tools/url-loader into your Docusaurus project:
yarn add @graphql-tools/url-loader
Once done, you can declare the loader into docusaurus2-graphql-doc-generator configuration:
plugins: [["@edno/docusaurus2-graphql-doc-generator",{// ... other optionsloaders: {UrlLoader: "@graphql-tools/url-loader"}},],],
You can declare as many loaders as you need using the structure:
If you decide to use your own home page for the GraphQL generated documentation, then set the page ID to id: schema and the sidebar position to sidebar_position: 1:
---id: schemaslug: /schematitle: Schema Documentationsidebar_position: 1---
This documentation has been automatically generated from the GraphQL schema.
Tip
If you want to hide it from the sidebar (like in the demo), then set the front matter sidebar_class_name (or className depending on your Docusaurus version) to navbar__toggle.
The diffMethod is only used for identifying if the schema has changed. If a change is detected since the last documentation generation, then the full schema documentation will be generated.
Option groupByDirective
The groupByDirective is used to add grouping to the documentation to provide for an easier user experience to navigate. This is accomplished by adding a directive to all the types you want to have grouped.
For example, we have two mutations called addCourse and dropCourse, and we want to group them under a category called Courses.
We can accomplish this by adding a directive called doc with a field category to each mutation. Also, we can add a fallback option called Common which is for types that we don't explicitly add a directive to.
plugins: [["@edno/docusaurus2-graphql-doc-generator",{// ... other optionsgroupByDirective: {directive: "doc",field: "category",fallback: "Common",// default is Miscellaneous}},],],
Troubleshooting
Duplicate "graphql" modules cannot be used at the same time
Add a resolutions entry to your package.json file:
"resolutions": {
"graphql": "15.5.2"
}
Unable to find any GraphQL type definitions
Try changing the temporary folder for the plugin by setting tmpDir: "./.docusaurus" (see options section for more details).
You can also disable the schema diff feature by setting diffMethod: "NONE".
Unable to find any GraphQL type definitions for the following pointers
This error may occur when upgrading to version 1.5.0 or above.
Install and declare the missing GraphQL document loader package, see Loaders.
If the error persists, check that you have the correct class name in the configuration declaration.
Licence
GraphQL-Markdown packages are 100% free and open-source, under the MIT license.
This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
Contributions
Contributions, issues and feature requests are very welcome. If you are using this package and fixed a bug for yourself, please consider submitting a PR!
请发表评论