@apollo/client 3.6.0-beta.11 → 3.6.0-beta.12
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/apollo-client.cjs +2 -2
- package/apollo-client.cjs.map +1 -1
- package/apollo-client.min.cjs +1 -1
- package/core/core.cjs +1 -1
- package/core/core.cjs.map +1 -1
- package/invariantErrorCodes.js +1 -1
- package/package.json +1 -1
- package/utilities/graphql/transform.d.ts +2 -2
- package/utilities/graphql/transform.d.ts.map +1 -1
- package/utilities/graphql/transform.js +1 -1
- package/utilities/graphql/transform.js.map +1 -1
- package/utilities/utilities.cjs +1 -1
- package/utilities/utilities.cjs.map +1 -1
- package/version.js +1 -1
package/apollo-client.cjs
CHANGED
|
@@ -539,7 +539,7 @@ function removeDirectivesFromDocument(directives, doc) {
|
|
|
539
539
|
return modifiedDoc;
|
|
540
540
|
}
|
|
541
541
|
var addTypenameToDocument = Object.assign(function (doc) {
|
|
542
|
-
return graphql.visit(
|
|
542
|
+
return graphql.visit(doc, {
|
|
543
543
|
SelectionSet: {
|
|
544
544
|
enter: function (node, _key, parent) {
|
|
545
545
|
if (parent &&
|
|
@@ -1291,7 +1291,7 @@ var concat = ApolloLink.concat;
|
|
|
1291
1291
|
|
|
1292
1292
|
var execute = ApolloLink.execute;
|
|
1293
1293
|
|
|
1294
|
-
var version = '3.6.0-beta.
|
|
1294
|
+
var version = '3.6.0-beta.12';
|
|
1295
1295
|
|
|
1296
1296
|
var hasOwnProperty$3 = Object.prototype.hasOwnProperty;
|
|
1297
1297
|
function parseAndCheckHttpResponse(operations) {
|