
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
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 109 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.