relay-runtime 0.0.0-main-5c1045dc → 0.0.0-main-30995390

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Relay v0.0.0-main-5c1045dc
2
+ * Relay v0.0.0-main-30995390
3
3
  *
4
4
  * Copyright (c) Facebook, Inc. and its affiliates.
5
5
  *
@@ -92,6 +92,10 @@ function updateProxyFromSelections(mutableUpdatableProxy, recordProxy, queryVari
92
92
 
93
93
  break;
94
94
 
95
+ case 'ClientExtension':
96
+ updateProxyFromSelections(mutableUpdatableProxy, recordProxy, queryVariables, selection.selections, root);
97
+ break;
98
+
95
99
  case 'FragmentSpread':
96
100
  // Explicitly ignore
97
101
  break;
@@ -145,6 +145,15 @@ function updateProxyFromSelections<TQuery: OperationType>(
145
145
  );
146
146
  }
147
147
  break;
148
+ case 'ClientExtension':
149
+ updateProxyFromSelections(
150
+ mutableUpdatableProxy,
151
+ recordProxy,
152
+ queryVariables,
153
+ selection.selections,
154
+ root,
155
+ );
156
+ break;
148
157
  case 'FragmentSpread':
149
158
  // Explicitly ignore
150
159
  break;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "relay-runtime",
3
3
  "description": "A core runtime for building GraphQL-driven applications.",
4
- "version": "0.0.0-main-5c1045dc",
4
+ "version": "0.0.0-main-30995390",
5
5
  "keywords": [
6
6
  "graphql",
7
7
  "relay"
@@ -39,7 +39,7 @@ export type GraphQLTaggedNode =
39
39
  * Runtime function to correspond to the `graphql` tagged template function.
40
40
  * All calls to this function should be transformed by the plugin.
41
41
  */
42
- function graphql(strings: Array<string>): GraphQLTaggedNode {
42
+ function graphql(strings: Array<string>): any {
43
43
  invariant(
44
44
  false,
45
45
  'graphql: Unexpected invocation at runtime. Either the Babel transform ' +