relay-runtime 0.0.0-main-863c2301 → 0.0.0-main-09fd0858
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
|
@@ -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;
|