Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby transformer plug-in via BuildVU

nvm friendly Commitizen friendly Code of conduct

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.

  1. 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

License

Unlicensed under a Private License.

© 2023 Gatsby, Inc.