We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5294a4 commit 4136a8cCopy full SHA for 4136a8c
packages/relay-runtime/store/OperationExecutor.js
@@ -561,6 +561,7 @@ class Executor<TMutation: MutationParameters> {
561
}
562
563
if (hasNormalizedResponses) {
564
+ const payloadFollowups = [];
565
for (let i = 0; i < normalizedResponses.length; i++) {
566
const response = normalizedResponses[i];
567
const source = new RelayRecordSource(
@@ -579,7 +580,9 @@ class Executor<TMutation: MutationParameters> {
579
580
payload,
581
this._updater,
582
);
583
+ payloadFollowups.push(payload);
584
585
+ this._processPayloadFollowups(payloadFollowups);
586
587
588
if (incrementalResponses.length > 0) {
0 commit comments