{"library":"gatsby-plugin-graphql-codegen","install":[{"cmd":"npm install gatsby-plugin-graphql-codegen","imports":["// In gatsby-config.js\nmodule.exports = {\n  plugins: [`gatsby-plugin-graphql-codegen`]\n}","// In .tsx files, types are auto-generated to default 'graphql-types.ts'\nimport { GatsbyTypes } from '../graphql-types';\n// Or with custom filename:\nimport { MyQueryQuery } from './gatsby-graphql';\n","const path = require('path');\nmodule.exports = {\n  plugins: [\n    {\n      resolve: `gatsby-plugin-graphql-codegen`,\n      options: {\n        codegen: true,\n        documentPaths: [\n          './src/**/*.{ts,tsx}',\n          path.join(process.cwd(), '.cache/fragments/*.js'),\n          'node_modules/gatsby-*/**/*.js'\n        ],\n        fileName: './gatsby-graphql-types.ts',\n        codegenDelay: 200,\n        failOnError: process.env.NODE_ENV === 'production',\n        codegenConfig: {},\n        codegenPlugins: [],\n        additionalSchemas: [],\n        pluckConfig: {\n          globalGqlIdentifierName: 'graphql',\n          modules: [{ name: 'gatsby', identifier: 'graphql' }]\n        }\n      }\n    }\n  ]\n};"]},{"cmd":"yarn add gatsby-plugin-graphql-codegen","imports":[]},{"cmd":"pnpm add gatsby-plugin-graphql-codegen","imports":[]}]}