Community Plugin
View plugin on GitHubGatsby transformer plug-in via BuildVU
Use this template to easily create a new Gatsby Source plug-in project that uses Typescript.
A GatsbyJS source plugin for {ADD_PURPOSE}.
{ADD_DESCRIPTION}
Installation
This is a private GitHub Packages which requires the user to authenticate with a personal access token.
-
Install the NPM module
npm install --save @okayd/gatsby-transformer-buildvu
Usage
🚀 Quick start
Add @okayd/gatsby-transformer-buildvu
as plugin in gatsby-config.js.
// In your gatsby-config.js
module.exports = {
plugins: [
// You can have multiple instances of this plugin
// to import source nodes from different titles or collections
{
resolve: "gatsby-transformer-buildvu",
options: {
// DEFINE OPTIONS
},
},
],
}
Options
Name | Type | Required | Default | Description |
---|---|---|---|---|
Example | what type of property | yes/no | default value | add description of property functionality |
How to query
You can look up {YOUR_NODE_TYPE} nodes with this GraphQL query:
{
allYourSourceType {
edges {
node {
id
}
}
}
}
💫 Deployment
…
🔗 Relevant Links
License
Unlicensed under a Private License.