gatsby-plugin-schema-export

Export the current Gatsby schema to a *.gql file.

Usage no npm install needed!

<script type="module">
  import gatsbyPluginSchemaExport from 'https://cdn.skypack.dev/gatsby-plugin-schema-export';
</script>

README

gatsby-plugin-schema-export

Exports the current Gatsby schema to a *.graphql file.

Installation

Install

yarn add gatsby-plugin-schema-export

Without options

The generated schema will be written to generated/schema.graphql.

// gatsby-config.js
  ...
  plugins: [
    'gatsby-plugin-schema-export',
     ...
  ],

With options

The generated schema will be written to schema/gatsbySchema.graphql.

// gatsby-config.js
  ...
  plugins: [
    {
      resolve: `gatsby-plugin-schema-export`,
      options: {
        dest: `schemas/gatsbySchema.graphql`,
      },
    },
     ...
  ],

Usage

The generated schema will be written to generated/schema.graphql unless the dest option is set.