Releases: dotansimha/graphql-code-generator
March 07, 2023
@graphql-cli/codegen@3.0.4
Patch Changes
@graphql-codegen/cli@3.2.2
Patch Changes
-
#9086
a34cef35b
Thanks @beerose! - dependencies updates:- Updated dependency
graphql-config@^4.5.0
↗︎ (from^4.4.0
, independencies
) - Added dependency
jiti@^1.17.1
↗︎ (todependencies
) - Removed dependency
cosmiconfig-typescript-loader@^4.3.0
↗︎ (fromdependencies
) - Removed dependency
ts-node@^10.9.1
↗︎ (fromdependencies
)
- Updated dependency
-
#9086
a34cef35b
Thanks @beerose! - Supportcodegen.ts
in ESM projects
@graphql-codegen/visitor-plugin-common@3.0.2
Patch Changes
-
#9110
ba0610bbd
Thanks @gilgardosh! - Custom mappers with placeholder will apply omit -
#9069
4b49f6fbe
Thanks @eddeee888! - Extract union types to ResolversUnionTypes -
#8895
b343626c9
Thanks @benkroeger! - Preserve .js extension when importDocumentNodeExternallyFrom and emitLegacyCommonJSImports is false
@graphql-codegen/typescript-document-nodes@3.0.2
Patch Changes
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
@graphql-codegen/gql-tag-operations@2.0.2
Patch Changes
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
@graphql-codegen/typescript-operations@3.0.2
Patch Changes
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
- @graphql-codegen/typescript@3.0.2
@graphql-codegen/typescript-resolvers@3.1.1
Patch Changes
-
#9110
ba0610bbd
Thanks @gilgardosh! - Custom mappers with placeholder will apply omit -
#9069
4b49f6fbe
Thanks @eddeee888! - Extract union types to ResolversUnionTypes -
Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
- @graphql-codegen/typescript@3.0.2
@graphql-codegen/typed-document-node@3.0.2
Patch Changes
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
@graphql-codegen/typescript@3.0.2
Patch Changes
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
@graphql-codegen/client-preset@2.1.1
Patch Changes
- #9049
9430c3811
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-typed-document-node/core@3.1.2
↗︎ (from3.1.1
, independencies
)
- Updated dependency
- Updated dependencies [
ba0610bbd
,4b49f6fbe
,b343626c9
]:- @graphql-codegen/visitor-plugin-common@3.0.2
- @graphql-codegen/gql-tag-operations@2.0.2
- @graphql-codegen/typescript-operations@3.0.2
- @graphql-codegen/typed-document-node@3.0.2
- @graphql-codegen/typescript@3.0.2
@graphql-codegen/graphql-modules-preset@3.1.1
Patch Changes
February 23, 2023
@graphql-cli/codegen@3.0.3
Patch Changes
@graphql-codegen/cli@3.2.1
Patch Changes
February 22, 2023
@graphql-cli/codegen@3.0.2
Patch Changes
@graphql-codegen/cli@3.2.0
Minor Changes
Patch Changes
- #9009
288ed0977
Thanks @saihaj! - dependencies updates:- Added dependency
@parcel/watcher@^2.1.0
↗︎ (todependencies
) - Removed dependency
chokidar@^3.5.2
↗︎ (fromdependencies
)
- Added dependency
February 21, 2023
@graphql-codegen/cli@3.1.0
Minor Changes
-
#8893
a118c307a
Thanks @n1ru4l! - It is no longer mandatory to declare an empty plugins array when using a preset -
#8723
a3309e63e
Thanks @kazekyo! - Introduce a new feature called DocumentTransform.DocumentTransform is a functionality that allows you to modify
documents
before they are processed by plugins. You can use functions passed to thedocumentTransforms
option to make changes to GraphQL documents.To use this feature, you can write
documentTransforms
as follows:import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: [ { transform: ({ documents }) => { // Make some changes to the documents return documents; }, }, ], }, }, }; export default config;
For instance, to remove a
@localOnlyDirective
directive fromdocuments
, you can write the following code:import type { CodegenConfig } from '@graphql-codegen/cli'; import { visit } from 'graphql'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: [ { transform: ({ documents }) => { return documents.map(documentFile => { documentFile.document = visit(documentFile.document, { Directive: { leave(node) { if (node.name.value === 'localOnlyDirective') return null; }, }, }); return documentFile; }); }, }, ], }, }, }; export default config;
DocumentTransform can also be specified by file name. You can create a custom file for a specific transformation and pass it to
documentTransforms
.Let's create the document transform as a file:
module.exports = { transform: ({ documents }) => { // Make some changes to the documents return documents; }, };
Then, you can specify the file name as follows:
import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: ['./my-document-transform.js'], }, }, }; export default config;
Patch Changes
- #9000
4c422ccf6
Thanks @renovate! - dependencies updates:- Updated dependency
@whatwg-node/fetch@^0.8.0
↗︎ (from^0.6.0
, independencies
)
- Updated dependency
- Updated dependencies [
8206b268d
,8206b268d
,a118c307a
,a3309e63e
]:- @graphql-codegen/core@3.1.0
- @graphql-codegen/plugin-helpers@4.1.0
@graphql-codegen/core@3.1.0
Minor Changes
-
#8723
a3309e63e
Thanks @kazekyo! - Introduce a new feature called DocumentTransform.DocumentTransform is a functionality that allows you to modify
documents
before they are processed by plugins. You can use functions passed to thedocumentTransforms
option to make changes to GraphQL documents.To use this feature, you can write
documentTransforms
as follows:import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: [ { transform: ({ documents }) => { // Make some changes to the documents return documents; }, }, ], }, }, }; export default config;
For instance, to remove a
@localOnlyDirective
directive fromdocuments
, you can write the following code:import type { CodegenConfig } from '@graphql-codegen/cli'; import { visit } from 'graphql'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: [ { transform: ({ documents }) => { return documents.map(documentFile => { documentFile.document = visit(documentFile.document, { Directive: { leave(node) { if (node.name.value === 'localOnlyDirective') return null; }, }, }); return documentFile; }); }, }, ], }, }, }; export default config;
DocumentTransform can also be specified by file name. You can create a custom file for a specific transformation and pass it to
documentTransforms
.Let's create the document transform as a file:
module.exports = { transform: ({ documents }) => { // Make some changes to the documents return documents; }, };
Then, you can specify the file name as follows:
import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://localhost:4000/graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', documentTransforms: ['./my-document-transform.js'], }, }, }; export default config;
Patch Changes
- #8879
8206b268d
Thanks @renovate! - dependencies updates:- Updated dependency
tslib@~2.5.0
↗︎ (from~2.4.0
, independencies
)
- Updated dependency
- Updated dependencies [
8206b268d
,a118c307a
,a3309e63e
]:- @graphql-codegen/plugin-helpers@4.1.0
@graphql-codegen/typescript-resolvers@3.1.0
Minor Changes
- #8853
b13aa7449
Thanks @KGAdamCook! - Updated customResolveInfo to use the correct importType for external imports
Patch Changes
February 03, 2023
@graphql-cli/codegen@3.0.0
Major Changes
Patch Changes
@graphql-codegen/cli@3.0.0
Major Changes
Patch Changes
-
#8883
321d5112e
Thanks @Solo-steven! - Fix PluckConfig overwrite problem. -
Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/core@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
@graphql-codegen/core@3.0.0
Major Changes
Patch Changes
@graphql-codegen/add@4.0.0
Major Changes
Patch Changes
@graphql-codegen/fragment-matcher@4.0.0
Major Changes
Patch Changes
@graphql-codegen/introspection@3.0.0
Major Changes
Patch Changes
- Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/visitor-plugin-common@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
@graphql-codegen/schema-ast@3.0.0
Major Changes
Patch Changes
@graphql-codegen/time@4.0.0
Major Changes
Patch Changes
@graphql-codegen/visitor-plugin-common@3.0.0
Major Changes
Patch Changes
@graphql-codegen/typescript-document-nodes@3.0.0
Major Changes
Patch Changes
- Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/visitor-plugin-common@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
@graphql-codegen/gql-tag-operations@2.0.0
Major Changes
Patch Changes
- Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/visitor-plugin-common@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
@graphql-codegen/typescript-operations@3.0.0
Major Changes
Patch Changes
- Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/visitor-plugin-common@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
- @graphql-codegen/typescript@3.0.0
@graphql-codegen/typescript-resolvers@3.0.0
Major Changes
Patch Changes
-
Updated dependencies [
fc79b65d4
,fd0b0c813
]:- @graphql-codegen/visitor-plugin-common@3.0.0
- @graphql-codegen/plugin-helpers@4.0.0
- @graphql-codegen/typescript@3.0.0
@graphql-codegen/typed-document-node@3.0.0
Major Changes
January 30, 2023
@graphql-codegen/testing@1.18.3
Patch Changes
- #8836
4fa0a566e
Thanks @renovate! - dependencies updates:- Updated dependency
nock@13.3.0
↗︎ (from13.2.9
, independencies
)
- Updated dependency
January 30, 2023
@graphql-cli/codegen@2.4.25
Patch Changes
@graphql-codegen/cli@2.16.5
Patch Changes
-
#8865
e4d073b16
Thanks @n1ru4l! - dependencies updates:- Updated dependency
@graphql-codegen/core@^2.6.8
↗︎ (from2.6.8
, independencies
) - Updated dependency
@graphql-tools/load@^7.8.0
↗︎ (from7.8.0
, independencies
) - Updated dependency
cosmiconfig-typescript-loader@^4.3.0
↗︎ (from4.3.0
, independencies
) - Updated dependency
graphql-config@^4.4.0
↗︎ (from4.4.0
, independencies
) - Added dependency
ts-node@^10.9.1
↗︎ (todependencies
) - Removed dependency
ts-node@>=10
↗︎ (frompeerDependencies
)
- Updated dependency
-
#8865
e4d073b16
Thanks @n1ru4l! - move ts-node from peer dependencies to dependencies
@graphql-codegen/visitor-plugin-common@2.13.8
Patch Changes
- #8816
a98198524
Thanks @charle692! - Fix issue where visitor-plugin-common emitted ESM imports for Operations when emitLegacyCommonJSImports is true
@graphql-codegen/typescript-document-nodes@2.3.13
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
@graphql-codegen/gql-tag-operations@1.6.2
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
@graphql-codegen/typescript-operations@2.5.13
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
- @graphql-codegen/typescript@2.8.8
@graphql-codegen/typescript-resolvers@2.7.13
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
- @graphql-codegen/typescript@2.8.8
@graphql-codegen/typed-document-node@2.3.13
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
@graphql-codegen/typescript@2.8.8
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
@graphql-codegen/client-preset@1.3.0
Minor Changes
-
#8757
4f290aa72
Thanks @n1ru4l! - Add support for persisted documents.You can now generate and embed a persisted documents hash for the executable documents.
/** codegen.ts */ import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index', documents: ['src/**/*.tsx'], ignoreNoDocuments: true, // for better experience with the watcher generates: { './src/gql/': { preset: 'client', plugins: [], presetConfig: { persistedDocuments: true, }, }, }, }; export default config;
This will generate
./src/gql/persisted-documents.json
(dictionary of hashes with their operation string).In addition to that each generated document node will have a
__meta__.hash
property.import { gql } from './gql.js'; const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { allFilms(first: $first) { edges { node { ...FilmItem } } } } `); console.log((allFilmsWithVariablesQueryDocument as any)['__meta__']['hash']);
-
#8757
4f290aa72
Thanks @n1ru4l! - Add support for embedding metadata in the document AST.It is now possible to embed metadata (e.g. for your GraphQL client within the emitted code).
/** codegen.ts */ import { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { schema: 'https://swapi-graphql.netlify.app/.netlify/functions/index', documents: ['src/**/*.tsx'], ignoreNoDocuments: true, // for better experience with the watcher generates: { './src/gql/': { preset: 'client', plugins: [], presetConfig: { onExecutableDocumentNode(documentNode) { return { operation: documentNode.definitions[0].operation, name: documentNode.definitions[0].name.value, }; }, }, }, }, }; export default config;
You can then access the metadata via the
__meta__
property on the document node.import { gql } from './gql.js'; const allFilmsWithVariablesQueryDocument = graphql(/* GraphQL */ ` query allFilmsWithVariablesQuery($first: Int!) { allFilms(first: $first) { edges { node { ...FilmItem } } } } `); console.log((allFilmsWithVariablesQueryDocument as any)['__meta__']);
Patch Changes
- #8757
4f290aa72
Thanks @n1ru4l! - dependencies updates:- Added dependency
@graphql-tools/documents@^0.1.0
↗︎ (todependencies
)
- Added dependency
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
- @graphql-codegen/gql-tag-operations@1.6.2
- @graphql-codegen/typescript-operations@2.5.13
- @graphql-codegen/typed-document-node@2.3.13
- @graphql-codegen/typescript@2.8.8
@graphql-codegen/graphql-modules-preset@2.5.12
Patch Changes
- Updated dependencies [
a98198524
]:- @graphql-codegen/visitor-plugin-common@2.13.8
January 10, 2023
@graphql-cli/codegen@2.4.24
Patch Changes
@graphql-codegen/cli@2.16.4
Patch Changes
-
#8770
4774247e9
Thanks @renovate! - dependencies updates:- Updated dependency
graphql-config@4.4.0
↗︎ (from4.3.6
, independencies
)
- Updated dependency
-
#8790
fe12b4826
Thanks @renovate! - dependencies updates:- Updated dependency
@whatwg-node/fetch@^0.6.0
↗︎ (from^0.5.0
, independencies
)
- Updated dependency
@graphql-codegen/gql-tag-operations@1.6.1
Patch Changes
- #8796
902451601
Thanks @shmax! - remove extra asterisk and add missing semicolon in generated output
@graphql-codegen/client-preset@1.2.6
Patch Changes
-
#8796
902451601
Thanks @shmax! - remove extra asterisk and add missing semicolon in generated output -
Updated dependencies [
902451601
]:- @graphql-codegen/gql-tag-operations@1.6.1
@graphql-codegen/gql-tag-operations-preset@1.7.4
Patch Changes
January 04, 2023
@graphql-cli/codegen@2.4.23
Patch Changes
- Updated dependencies [
ad5d83313
]:- @graphql-codegen/cli@2.16.3
@graphql-codegen/cli@2.16.3
Patch Changes
- #8779
ad5d83313
Thanks @louisscruz! - add ts-node as a peerDependency
@graphql-codegen/visitor-plugin-common@2.13.7
Patch Changes
@graphql-codegen/typescript-document-nodes@2.3.12
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
@graphql-codegen/gql-tag-operations@1.6.0
Minor Changes
- #8763
2a33fc774
Thanks @ElvisUpUp! - change the client-preset generated template
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
@graphql-codegen/typescript-operations@2.5.12
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
- @graphql-codegen/typescript@2.8.7
@graphql-codegen/typescript-resolvers@2.7.12
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
- @graphql-codegen/typescript@2.8.7
@graphql-codegen/typed-document-node@2.3.12
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
@graphql-codegen/typescript@2.8.7
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
@graphql-codegen/client-preset@1.2.5
Patch Changes
- Updated dependencies [
eb454d06c
,2a33fc774
]:- @graphql-codegen/visitor-plugin-common@2.13.7
- @graphql-codegen/gql-tag-operations@1.6.0
- @graphql-codegen/typescript-operations@2.5.12
- @graphql-codegen/typed-document-node@2.3.12
- @graphql-codegen/typescript@2.8.7
@graphql-codegen/graphql-modules-preset@2.5.11
Patch Changes
- Updated dependencies [
eb454d06c
]:- @graphql-codegen/visitor-plugin-common@2.13.7
December 27, 2022
@graphql-cli/codegen@2.4.22
Patch Changes
@graphql-codegen/cli@2.16.2
Patch Changes
-
#8715
b1512a59a
Thanks @renovate! - dependencies updates:- Updated dependency
cosmiconfig-typescript-loader@4.2.0
↗︎ (from4.1.1
, independencies
)
- Updated dependency
-
#8729
e6ff224fb
Thanks @renovate! - dependencies updates:- Updated dependency
cosmiconfig-typescript-loader@4.3.0
↗︎ (from4.2.0
, independencies
)
- Updated dependency
-
#8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.9.0
, independencies
)
- Updated dependency
-
#8765
a9c5414d2
Thanks @aniketdd! - update @graphql-tools/prisma-loader -
Updated dependencies [
ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
@graphql-codegen/schema-ast@2.6.1
Patch Changes
- #8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.8.0
, independencies
)
- Updated dependency
- Updated dependencies [
ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
@graphql-codegen/visitor-plugin-common@2.13.6
Patch Changes
- #8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.8.0
, independencies
)
- Updated dependency
- Updated dependencies [
ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
@graphql-codegen/typescript-document-nodes@2.3.11
Patch Changes
- Updated dependencies [
ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
@graphql-codegen/gql-tag-operations@1.5.12
Patch Changes
- #8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.8.0
, independencies
)
- Updated dependency
- Updated dependencies [
ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
@graphql-codegen/typescript-operations@2.5.11
Patch Changes
- Updated dependencies [
ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
- @graphql-codegen/typescript@2.8.6
@graphql-codegen/typescript-resolvers@2.7.11
Patch Changes
- #8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.8.0
, independencies
)
- Updated dependency
- Updated dependencies [
ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
- @graphql-codegen/typescript@2.8.6
@graphql-codegen/typed-document-node@2.3.11
Patch Changes
- Updated dependencies [
ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
@graphql-codegen/typescript@2.8.6
Patch Changes
- Updated dependencies [
ed87c782b
,ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/schema-ast@2.6.1
- @graphql-codegen/visitor-plugin-common@2.13.6
@graphql-codegen/client-preset@1.2.4
Patch Changes
-
#8771
ed87c782b
Thanks @renovate! - dependencies updates:- Updated dependency
@graphql-tools/utils@^9.0.0
↗︎ (from^8.8.0
, independencies
)
- Updated dependency
-
#8752
cbca5a7ea
Thanks @pbrink231! - add typescriptavoidOptionals
to forwarded config -
Updated dependencies [
ed87c782b
,ed87c782b
,ed87c782b
,6c6b6f2df
]:- @graphql-codegen/gql-tag-operations@1.5.12
- @graphql-codegen/plugin-helpers@3.1.2
- @graphql-codegen/visitor-plugin-common@2.13.6
- @graphql-codegen/typescript...