@graphql-codegen/typescript-react-apollo 3.1.5-alpha-476627f73.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -1
- package/index.mjs +3 -2
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
|
|
6
6
|
|
|
7
|
+
const pluginHelpers = require('@graphql-codegen/plugin-helpers');
|
|
7
8
|
const graphql = require('graphql');
|
|
8
9
|
const visitorPluginCommon = require('@graphql-codegen/visitor-plugin-common');
|
|
9
10
|
const autoBind = _interopDefault(require('auto-bind'));
|
|
@@ -345,7 +346,7 @@ const plugin = (schema, documents, config) => {
|
|
|
345
346
|
...(config.externalFragments || []),
|
|
346
347
|
];
|
|
347
348
|
const visitor = new ReactApolloVisitor(schema, allFragments, config, documents);
|
|
348
|
-
const visitorResult =
|
|
349
|
+
const visitorResult = pluginHelpers.oldVisit(allAst, { leave: visitor });
|
|
349
350
|
return {
|
|
350
351
|
prepend: visitor.getImports(),
|
|
351
352
|
content: [visitor.fragments, ...visitorResult.definitions.filter(t => typeof t === 'string')].join('\n'),
|
package/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { oldVisit } from '@graphql-codegen/plugin-helpers';
|
|
2
|
+
import { Kind, concatAST } from 'graphql';
|
|
2
3
|
import { ClientSideBaseVisitor, getConfigValue, OMIT_TYPE, DocumentMode } from '@graphql-codegen/visitor-plugin-common';
|
|
3
4
|
import autoBind from 'auto-bind';
|
|
4
5
|
import { pascalCase, camelCase } from 'change-case-all';
|
|
@@ -339,7 +340,7 @@ const plugin = (schema, documents, config) => {
|
|
|
339
340
|
...(config.externalFragments || []),
|
|
340
341
|
];
|
|
341
342
|
const visitor = new ReactApolloVisitor(schema, allFragments, config, documents);
|
|
342
|
-
const visitorResult =
|
|
343
|
+
const visitorResult = oldVisit(allAst, { leave: visitor });
|
|
343
344
|
return {
|
|
344
345
|
prepend: visitor.getImports(),
|
|
345
346
|
content: [visitor.fragments, ...visitorResult.definitions.filter(t => typeof t === 'string')].join('\n'),
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-codegen/typescript-react-apollo",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "GraphQL Code Generator plugin for generating a ready-to-use React Components/HOC/Hooks based on GraphQL operations",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0",
|
|
7
7
|
"graphql-tag": "^2.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@graphql-codegen/plugin-helpers": "^2.
|
|
11
|
-
"@graphql-codegen/visitor-plugin-common": "2.
|
|
10
|
+
"@graphql-codegen/plugin-helpers": "^2.3.0",
|
|
11
|
+
"@graphql-codegen/visitor-plugin-common": "2.5.0",
|
|
12
12
|
"auto-bind": "~4.0.0",
|
|
13
13
|
"change-case-all": "1.0.14",
|
|
14
14
|
"tslib": "~2.3.0"
|