relay-runtime 0.0.0-main-d4d5f67e → 0.0.0-main-59c9bc01

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-d4d5f67e
2
+ * Relay v0.0.0-main-59c9bc01
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-d4d5f67e",
4
+ "version": "0.0.0-main-59c9bc01",
5
5
  "keywords": [
6
6
  "graphql",
7
7
  "relay"