relay-runtime 0.0.0-main-5a7646e0 → 0.0.0-main-32d17fa8
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.
|
@@ -342,7 +342,7 @@ class RelayModernEnvironment implements IEnvironment {
|
|
|
342
342
|
|}): RelayObservable<GraphQLResponse> {
|
|
343
343
|
return this._execute({
|
|
344
344
|
createSource: () =>
|
|
345
|
-
this.
|
|
345
|
+
this.getNetwork().execute(
|
|
346
346
|
operation.request.node.params,
|
|
347
347
|
operation.request.variables,
|
|
348
348
|
operation.request.cacheConfig || {},
|
|
@@ -372,7 +372,7 @@ class RelayModernEnvironment implements IEnvironment {
|
|
|
372
372
|
|}): RelayObservable<GraphQLResponse> {
|
|
373
373
|
return this._execute({
|
|
374
374
|
createSource: () =>
|
|
375
|
-
this.
|
|
375
|
+
this.getNetwork().execute(
|
|
376
376
|
operation.request.node.params,
|
|
377
377
|
operation.request.variables,
|
|
378
378
|
operation.request.cacheConfig || {},
|
|
@@ -412,7 +412,7 @@ class RelayModernEnvironment implements IEnvironment {
|
|
|
412
412
|
}
|
|
413
413
|
return this._execute({
|
|
414
414
|
createSource: () =>
|
|
415
|
-
this.
|
|
415
|
+
this.getNetwork().execute(
|
|
416
416
|
operation.request.node.params,
|
|
417
417
|
operation.request.variables,
|
|
418
418
|
{
|