1
1
import { AccumulatorMap } from '../jsutils/AccumulatorMap.js' ;
2
2
import { invariant } from '../jsutils/invariant.js' ;
3
+ import { mapValue } from '../jsutils/mapValue.js' ;
3
4
import type { ObjMap } from '../jsutils/ObjMap.js' ;
4
5
5
6
import type {
@@ -25,22 +26,18 @@ import type { GraphQLSchema } from '../type/schema.js';
25
26
import { typeFromAST } from '../utilities/typeFromAST.js' ;
26
27
27
28
import type { GraphQLVariableSignature } from './getVariableSignature.js' ;
29
+ import type { VariableValues } from './values.js' ;
28
30
import { experimentalGetArgumentValues , getDirectiveValues } from './values.js' ;
29
31
30
32
export interface DeferUsage {
31
33
label : string | undefined ;
32
34
parentDeferUsage : DeferUsage | undefined ;
33
35
}
34
36
35
- export interface FragmentVariables {
36
- signatures : ObjMap < GraphQLVariableSignature > ;
37
- values : ObjMap < unknown > ;
38
- }
39
-
40
37
export interface FieldDetails {
41
38
node : FieldNode ;
42
39
deferUsage ?: DeferUsage | undefined ;
43
- fragmentVariables ?: FragmentVariables | undefined ;
40
+ fragmentVariableValues ?: VariableValues | undefined ;
44
41
}
45
42
46
43
export type FieldGroup = ReadonlyArray < FieldDetails > ;
@@ -55,7 +52,7 @@ export interface FragmentDetails {
55
52
interface CollectFieldsContext {
56
53
schema : GraphQLSchema ;
57
54
fragments : ObjMap < FragmentDetails > ;
58
- variableValues : { [ variable : string ] : unknown } ;
55
+ variableValues : VariableValues ;
59
56
operation : OperationDefinitionNode ;
60
57
runtimeType : GraphQLObjectType ;
61
58
visitedFragmentNames : Set < string > ;
@@ -73,7 +70,7 @@ interface CollectFieldsContext {
73
70
export function collectFields (
74
71
schema : GraphQLSchema ,
75
72
fragments : ObjMap < FragmentDetails > ,
76
- variableValues : { [ variable : string ] : unknown } ,
73
+ variableValues : VariableValues ,
77
74
runtimeType : GraphQLObjectType ,
78
75
operation : OperationDefinitionNode ,
79
76
) : {
@@ -114,7 +111,7 @@ export function collectFields(
114
111
export function collectSubfields (
115
112
schema : GraphQLSchema ,
116
113
fragments : ObjMap < FragmentDetails > ,
117
- variableValues : { [ variable : string ] : unknown } ,
114
+ variableValues : VariableValues ,
118
115
operation : OperationDefinitionNode ,
119
116
returnType : GraphQLObjectType ,
120
117
fieldGroup : FieldGroup ,
@@ -136,14 +133,14 @@ export function collectSubfields(
136
133
for ( const fieldDetail of fieldGroup ) {
137
134
const selectionSet = fieldDetail . node . selectionSet ;
138
135
if ( selectionSet ) {
139
- const { deferUsage, fragmentVariables } = fieldDetail ;
136
+ const { deferUsage, fragmentVariableValues } = fieldDetail ;
140
137
collectFieldsImpl (
141
138
context ,
142
139
selectionSet ,
143
140
subGroupedFieldSet ,
144
141
newDeferUsages ,
145
142
deferUsage ,
146
- fragmentVariables ,
143
+ fragmentVariableValues ,
147
144
) ;
148
145
}
149
146
}
@@ -161,7 +158,7 @@ function collectFieldsImpl(
161
158
groupedFieldSet : AccumulatorMap < string , FieldDetails > ,
162
159
newDeferUsages : Array < DeferUsage > ,
163
160
deferUsage ?: DeferUsage ,
164
- fragmentVariables ?: FragmentVariables ,
161
+ fragmentVariableValues ?: VariableValues ,
165
162
) : void {
166
163
const {
167
164
schema,
@@ -175,19 +172,25 @@ function collectFieldsImpl(
175
172
for ( const selection of selectionSet . selections ) {
176
173
switch ( selection . kind ) {
177
174
case Kind . FIELD : {
178
- if ( ! shouldIncludeNode ( selection , variableValues , fragmentVariables ) ) {
175
+ if (
176
+ ! shouldIncludeNode ( selection , variableValues , fragmentVariableValues )
177
+ ) {
179
178
continue ;
180
179
}
181
180
groupedFieldSet . add ( getFieldEntryKey ( selection ) , {
182
181
node : selection ,
183
182
deferUsage,
184
- fragmentVariables ,
183
+ fragmentVariableValues ,
185
184
} ) ;
186
185
break ;
187
186
}
188
187
case Kind . INLINE_FRAGMENT : {
189
188
if (
190
- ! shouldIncludeNode ( selection , variableValues , fragmentVariables ) ||
189
+ ! shouldIncludeNode (
190
+ selection ,
191
+ variableValues ,
192
+ fragmentVariableValues ,
193
+ ) ||
191
194
! doesFragmentConditionMatch ( schema , selection , runtimeType )
192
195
) {
193
196
continue ;
@@ -196,7 +199,7 @@ function collectFieldsImpl(
196
199
const newDeferUsage = getDeferUsage (
197
200
operation ,
198
201
variableValues ,
199
- fragmentVariables ,
202
+ fragmentVariableValues ,
200
203
selection ,
201
204
deferUsage ,
202
205
) ;
@@ -208,7 +211,7 @@ function collectFieldsImpl(
208
211
groupedFieldSet ,
209
212
newDeferUsages ,
210
213
deferUsage ,
211
- fragmentVariables ,
214
+ fragmentVariableValues ,
212
215
) ;
213
216
} else {
214
217
newDeferUsages . push ( newDeferUsage ) ;
@@ -218,7 +221,7 @@ function collectFieldsImpl(
218
221
groupedFieldSet ,
219
222
newDeferUsages ,
220
223
newDeferUsage ,
221
- fragmentVariables ,
224
+ fragmentVariableValues ,
222
225
) ;
223
226
}
224
227
@@ -230,15 +233,19 @@ function collectFieldsImpl(
230
233
const newDeferUsage = getDeferUsage (
231
234
operation ,
232
235
variableValues ,
233
- fragmentVariables ,
236
+ fragmentVariableValues ,
234
237
selection ,
235
238
deferUsage ,
236
239
) ;
237
240
238
241
if (
239
242
! newDeferUsage &&
240
243
( visitedFragmentNames . has ( fragName ) ||
241
- ! shouldIncludeNode ( selection , variableValues , fragmentVariables ) )
244
+ ! shouldIncludeNode (
245
+ selection ,
246
+ variableValues ,
247
+ fragmentVariableValues ,
248
+ ) )
242
249
) {
243
250
continue ;
244
251
}
@@ -252,15 +259,20 @@ function collectFieldsImpl(
252
259
}
253
260
254
261
const fragmentVariableSignatures = fragment . variableSignatures ;
255
- let newFragmentVariables : FragmentVariables | undefined ;
262
+ let newFragmentVariableValues : VariableValues | undefined ;
256
263
if ( fragmentVariableSignatures ) {
257
- newFragmentVariables = {
258
- signatures : fragmentVariableSignatures ,
259
- values : experimentalGetArgumentValues (
264
+ newFragmentVariableValues = {
265
+ sources : mapValue ( fragmentVariableSignatures , ( varSignature ) => ( {
266
+ signature : varSignature ,
267
+ value : fragmentVariableValues ?. sources [ varSignature . name ]
268
+ ? fragmentVariableValues . coerced [ varSignature . name ]
269
+ : variableValues . coerced [ varSignature . name ] ,
270
+ } ) ) ,
271
+ coerced : experimentalGetArgumentValues (
260
272
selection ,
261
273
Object . values ( fragmentVariableSignatures ) ,
262
274
variableValues ,
263
- fragmentVariables ,
275
+ fragmentVariableValues ,
264
276
) ,
265
277
} ;
266
278
}
@@ -273,7 +285,7 @@ function collectFieldsImpl(
273
285
groupedFieldSet ,
274
286
newDeferUsages ,
275
287
deferUsage ,
276
- newFragmentVariables ,
288
+ newFragmentVariableValues ,
277
289
) ;
278
290
} else {
279
291
newDeferUsages . push ( newDeferUsage ) ;
@@ -283,7 +295,7 @@ function collectFieldsImpl(
283
295
groupedFieldSet ,
284
296
newDeferUsages ,
285
297
newDeferUsage ,
286
- newFragmentVariables ,
298
+ newFragmentVariableValues ,
287
299
) ;
288
300
}
289
301
break ;
@@ -299,16 +311,16 @@ function collectFieldsImpl(
299
311
*/
300
312
function getDeferUsage (
301
313
operation : OperationDefinitionNode ,
302
- variableValues : { [ variable : string ] : unknown } ,
303
- fragmentVariables : FragmentVariables | undefined ,
314
+ variableValues : VariableValues ,
315
+ fragmentVariableValues : VariableValues | undefined ,
304
316
node : FragmentSpreadNode | InlineFragmentNode ,
305
317
parentDeferUsage : DeferUsage | undefined ,
306
318
) : DeferUsage | undefined {
307
319
const defer = getDirectiveValues (
308
320
GraphQLDeferDirective ,
309
321
node ,
310
322
variableValues ,
311
- fragmentVariables ,
323
+ fragmentVariableValues ,
312
324
) ;
313
325
314
326
if ( ! defer ) {
@@ -336,14 +348,14 @@ function getDeferUsage(
336
348
*/
337
349
function shouldIncludeNode (
338
350
node : FragmentSpreadNode | FieldNode | InlineFragmentNode ,
339
- variableValues : { [ variable : string ] : unknown } ,
340
- fragmentVariables : FragmentVariables | undefined ,
351
+ variableValues : VariableValues ,
352
+ fragmentVariableValues : VariableValues | undefined ,
341
353
) : boolean {
342
354
const skip = getDirectiveValues (
343
355
GraphQLSkipDirective ,
344
356
node ,
345
357
variableValues ,
346
- fragmentVariables ,
358
+ fragmentVariableValues ,
347
359
) ;
348
360
if ( skip ?. if === true ) {
349
361
return false ;
@@ -353,7 +365,7 @@ function shouldIncludeNode(
353
365
GraphQLIncludeDirective ,
354
366
node ,
355
367
variableValues ,
356
- fragmentVariables ,
368
+ fragmentVariableValues ,
357
369
) ;
358
370
if ( include ?. if === false ) {
359
371
return false ;
0 commit comments