
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
graphdoc-plugin-schema
Advanced tools
GraphQL documentation using configurable graphdoc document-schema plugin
1 . Add dependencies:
package.json
:
"devDependencies": {
"@2fd/graphdoc": "2.4.0",
"graphdoc-plugin-schema": "2.0.0",
2 . If default options are not suitable, then configure graphdoc-plugin-schema
:
package.json
:
{
"graphdoc-plugin-schema": {
"documentTitle": "The Description",
"enableAssets": false
}
}
3 Use graphdoc-plugin-schema
:
package.json
:
"scripts": {
"doc": "graphdoc -p graphdoc/../../graphdoc-plugin-schema -p graphdoc/../../graphdoc-plugin-flexible -s ./schema.graphql -o ./build/documentation"
},
"graphdoc-plugin-flexible": {
"document.schema": { "disable": true }
},
"devDependencies": {
"@2fd/graphdoc": "2.4.0",
"graphdoc-plugin-flexible": "1.0.2",
"graphdoc-plugin-schema": "2.0.0",
graphdoc-plugin-flexible
is required to avoid duplication when graphdoc default plugins are used.
graphdoc/../../
this is required to get external plugins working ingraphdoc
.
graphdoc-plugin-schema
provides a way to use graphdoc
default document-schema
plugin with other custom kinds without breaking (being also faster than document-schema
).
package.json
:
(default values)
{
"graphdoc-plugin-schema": {
"documentTitle": "Description",
"enableAssets": true
}
}
documentTitle
: title of the document section.enableAssets
: if set to false
, then it will disable all the assets provided by the plugin, i.e. script and css files will not be included.The following shows where the documentTitle
and the "code block" are located, using the example documentation created by graphdoc
, Pokemon GraphQL HTML Documentation, using Pokemon GraphQL schema:
graphdoc-plugin-schema
is necessary that document-schema
plugin is disabled (to avoid duplication), use graphdoc-plugin-flexible
plugin:package.json
"scripts": {
"doc": "graphdoc -p graphdoc/../../graphdoc-plugin-schema -p graphdoc/../../graphdoc-plugin-flexible -s ./schema.graphql -o ./build/documentation"
},
"graphdoc-plugin-flexible": {
"document.schema": { "disable": true }
},
"devDependencies": {
"@2fd/graphdoc": "2.4.0",
"graphdoc-plugin-flexible": "1.0.2",
"graphdoc-plugin-schema": "2.0.0",
graphdoc can work with older versions of GraphQL (description syntax: #), and new versions (description syntax: """), How to configure graphdoc.
CHANGELOG
: contains the information about changes in each version, chronologically ordered (Keep a Changelog).
Don't forget:
At life:
At work:
FAQs
GraphQL schema HTML documentation generation, using configurable graphdoc document-schema plugin
The npm package graphdoc-plugin-schema receives a total of 138 weekly downloads. As such, graphdoc-plugin-schema popularity was classified as not popular.
We found that graphdoc-plugin-schema demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.