1.14.0 • Published 1 year ago

gatsby-plugin-graphql-config v1.14.0

Weekly downloads
217
License
MIT
Repository
github
Last release
1 year ago

gatsby-plugin-graphql-config

Persists Gatsby GraphQL schema and fragments to the .cache directory, as well as a GraphQL Config file to enable full-featured tooling for:

Install

npm install gatsby-plugin-graphql-config

How to use

First, add it to your plugin configuration:

// In your gatsby-config.js

plugins: [`gatsby-plugin-graphql-config`]

Simplest setup

If you are able to configure your tools to seek a different basePath for loading GraphQL Config, point them to .cache directory.

Manual setup for repositories with no other GraphQL projects

If your project is only a Gatsby project, you can place a graphql.config.js file at the root of your Gatsby project like this:

// <my project>/graphql.config.js

module.exports = require("./.cache/graphql.config.json")

If it's in a subdirectory such as a site/ folder, you would use this:

// <my project>/graphql.config.js

module.exports = require("./site/.cache/graphql.config.json")

Manual setup for repositories with multiple GraphQL projects

If your repository has multiple GraphQL projects including Gatsby, you will want a config similar to this at the root:

// <my project>/graphql.config.js

module.exports = {
  projects: {
    site: require("packages/site/.cache/graphql.config.json"),
    server: {
      schema: "packages/server/src/**/*.{graphql,gql}",
      documents: "packages/server/src/queries/**/*.{ts,tsx,js,jsx}",
    },
  },
}

How it works

It writes out these files to the Gatsby .cache directory:

  • schema.graphql - a complete representation of the schema, including plugins
  • fragments.graphql - all user, plugin and gatsby-core provided fragments in one file
  • graphql.config.json - a graphql-config@3 compatible config file with absolute file resolutions
0.24.0

1 year ago

1.14.0

2 years ago

1.14.0-next.1

2 years ago

1.14.0-next.0

2 years ago

1.14.0-next.2

2 years ago

1.13.0

2 years ago

1.15.0-next.0

2 years ago

1.12.0-next.0

2 years ago

1.13.0-next.0

2 years ago

1.10.0

2 years ago

1.12.1

2 years ago

1.12.0

2 years ago

1.11.0-next.0

2 years ago

1.11.0

2 years ago

1.10.0-next.1

2 years ago

1.10.0-next.0

2 years ago

1.9.0

2 years ago

1.4.0-next.0

2 years ago

1.6.0

2 years ago

1.6.0-next.0

2 years ago

1.9.0-next.0

2 years ago

1.7.0-next.0

2 years ago

1.5.0

2 years ago

1.8.0-next.0

2 years ago

1.8.0

2 years ago

1.4.0

2 years ago

1.5.0-next.0

2 years ago

1.7.0

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.3.0-next.0

2 years ago

1.1.0

3 years ago

1.2.0-next.0

3 years ago

1.0.0

3 years ago

1.1.0-next.0

3 years ago

1.0.0-zz-next.2

3 years ago

0.23.0

3 years ago

1.0.0-zz-next.8

3 years ago

1.0.0-zz-next.1

3 years ago

1.0.0-next.0

3 years ago

1.0.0-next.1

3 years ago

0.23.0-next.2

3 years ago

0.23.0-next.1

3 years ago

0.22.0

3 years ago

0.23.0-next.0

3 years ago

0.21.0

3 years ago

0.22.0-next.0

3 years ago

0.21.0-next.3

3 years ago

0.21.0-next.1

3 years ago

0.21.0-next.2

3 years ago

0.20.0

3 years ago

0.21.0-next.0

3 years ago

0.19.0

3 years ago

0.20.0-next.0

3 years ago

0.19.0-next.1

3 years ago

0.18.0

3 years ago

0.19.0-next.0

3 years ago

0.17.0

3 years ago

0.18.0-next.0

3 years ago

0.17.0-next.0

3 years ago

0.17.0-next.1

3 years ago

0.16.0-next.2

3 years ago

0.16.0-next.1

3 years ago

0.15.0

3 years ago

0.16.0

3 years ago

0.16.1

3 years ago

0.14.0-next.0

3 years ago

0.16.0-next.0

3 years ago

0.13.0

3 years ago

0.14.0

3 years ago

0.15.0-next.0

3 years ago

0.12.0

3 years ago

0.13.0-next.0

3 years ago

0.12.0-next.1

3 years ago

0.11.0

3 years ago

0.12.0-next.0

3 years ago

0.10.0

3 years ago

0.11.0-next.0

3 years ago

0.9.0

3 years ago

0.10.0-next.1

3 years ago

0.9.0-v3rc.0

3 years ago

0.10.0-next.0

3 years ago

0.9.0-next.0

3 years ago

0.7.0

3 years ago

0.8.0-next.0

3 years ago

0.6.0

3 years ago

0.7.0-next.0

3 years ago

0.5.0

3 years ago

0.6.0-next.0

3 years ago

0.4.0

3 years ago

0.5.0-next.0

3 years ago

0.3.0

3 years ago

0.4.0-next.0

3 years ago

0.2.0

3 years ago

0.3.0-next.0

3 years ago

0.1.0

3 years ago

0.2.0-next.0

3 years ago

0.1.0-next.1

3 years ago

0.1.0-next.0

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago