File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ export type DeferUsageSet = ReadonlySet<DeferUsage>;
16
16
17
17
export interface FieldGroup {
18
18
fields : ReadonlyArray < FieldDetails > ;
19
- targets : TargetSet ;
20
- knownTargets : TargetSet ;
19
+ targets ? : TargetSet | undefined ;
20
+ knownTargets ? : TargetSet | undefined ;
21
21
}
22
22
23
23
export type GroupedFieldSet = Map < string , FieldGroup > ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ import type {
53
53
GroupedFieldSet ,
54
54
NewGroupedFieldSetDetails ,
55
55
} from './buildFieldPlan.js' ;
56
- import { buildFieldPlan , NON_DEFERRED_TARGET_SET } from './buildFieldPlan.js' ;
56
+ import { buildFieldPlan } from './buildFieldPlan.js' ;
57
57
import type { DeferUsage , FieldDetails } from './collectFields.js' ;
58
58
import { collectFields , collectSubfields } from './collectFields.js' ;
59
59
import type {
@@ -958,8 +958,6 @@ function getStreamUsage(
958
958
node : fieldDetails . node ,
959
959
deferUsage : undefined ,
960
960
} ) ) ,
961
- targets : NON_DEFERRED_TARGET_SET ,
962
- knownTargets : NON_DEFERRED_TARGET_SET ,
963
961
} ;
964
962
965
963
const streamUsage = {
You can’t perform that action at this time.
0 commit comments