Skip to content

Commit cc3cf38

Browse files
committed
Flip order of condition
1 parent cdfc2cb commit cc3cf38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cache/inmemory/readFromStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ export class StoreReader {
290290
// We don't need to report missing fields inside defer boundaries since
291291
// the "streaming" dataState tells us that the only missing fields in
292292
// the object is inside a defer boundary.
293-
(!handleIncremental || dataState !== "streaming")
293+
(dataState !== "streaming" || !handleIncremental)
294294
) {
295295
missing = new MissingFieldError(
296296
firstMissing(execResult.missing)!,

0 commit comments

Comments
 (0)