-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
execute.py
1202 lines (1043 loc) · 43.4 KB
/
execute.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from asyncio import gather
from collections.abc import Mapping
from typing import (
Any,
Awaitable,
Callable,
Dict,
Iterable,
List,
NamedTuple,
Optional,
Set,
Union,
Tuple,
Type,
cast,
)
from ..error import GraphQLError, located_error
from ..language import (
DocumentNode,
FieldNode,
FragmentDefinitionNode,
FragmentSpreadNode,
InlineFragmentNode,
OperationDefinitionNode,
OperationType,
SelectionSetNode,
)
from ..pyutils import (
inspect,
is_awaitable as default_is_awaitable,
AwaitableOrValue,
FrozenList,
Path,
Undefined,
)
from ..utilities.get_operation_root_type import get_operation_root_type
from ..utilities.type_from_ast import type_from_ast
from ..type import (
GraphQLAbstractType,
GraphQLField,
GraphQLIncludeDirective,
GraphQLLeafType,
GraphQLList,
GraphQLNonNull,
GraphQLObjectType,
GraphQLOutputType,
GraphQLSchema,
GraphQLSkipDirective,
GraphQLFieldResolver,
GraphQLTypeResolver,
GraphQLResolveInfo,
SchemaMetaFieldDef,
TypeMetaFieldDef,
TypeNameMetaFieldDef,
assert_valid_schema,
is_abstract_type,
is_leaf_type,
is_list_type,
is_non_null_type,
is_object_type,
)
from .middleware import MiddlewareManager
from .values import get_argument_values, get_directive_values, get_variable_values
__all__ = [
"assert_valid_execution_arguments",
"default_field_resolver",
"default_type_resolver",
"execute",
"get_field_def",
"ExecutionResult",
"ExecutionContext",
"Middleware",
]
# Terminology
#
# "Definitions" are the generic name for top-level statements in the document.
# Examples of this include:
# 1) Operations (such as a query)
# 2) Fragments
#
# "Operations" are a generic name for requests in the document.
# Examples of this include:
# 1) query,
# 2) mutation
#
# "Selections" are the definitions that can appear legally and at
# single level of the query. These include:
# 1) field references e.g "a"
# 2) fragment "spreads" e.g. "...c"
# 3) inline fragment "spreads" e.g. "...on Type { a }"
class ExecutionResult(NamedTuple):
"""The result of GraphQL execution.
- ``data`` is the result of a successful execution of the query.
- ``errors`` is included when any errors occurred as a non-empty list.
"""
data: Optional[Dict[str, Any]]
errors: Optional[List[GraphQLError]]
# noinspection PyTypeHints
ExecutionResult.__new__.__defaults__ = (None, None) # type: ignore
Middleware = Optional[Union[Tuple, List, MiddlewareManager]]
class ExecutionContext:
"""Data that must be available at all points during query execution.
Namely, schema of the type system that is currently executing, and the fragments
defined in the query document.
"""
schema: GraphQLSchema
fragments: Dict[str, FragmentDefinitionNode]
root_value: Any
context_value: Any
operation: OperationDefinitionNode
variable_values: Dict[str, Any]
field_resolver: GraphQLFieldResolver
type_resolver: GraphQLTypeResolver
errors: List[GraphQLError]
middleware_manager: Optional[MiddlewareManager]
is_awaitable = staticmethod(default_is_awaitable)
def __init__(
self,
schema: GraphQLSchema,
fragments: Dict[str, FragmentDefinitionNode],
root_value: Any,
context_value: Any,
operation: OperationDefinitionNode,
variable_values: Dict[str, Any],
field_resolver: GraphQLFieldResolver,
type_resolver: GraphQLTypeResolver,
errors: List[GraphQLError],
middleware_manager: Optional[MiddlewareManager],
is_awaitable: Optional[Callable[[Any], bool]],
) -> None:
self.schema = schema
self.fragments = fragments
self.root_value = root_value
self.context_value = context_value
self.operation = operation
self.variable_values = variable_values
self.field_resolver = field_resolver # type: ignore
self.type_resolver = type_resolver # type: ignore
self.errors = errors
self.middleware_manager = middleware_manager
if is_awaitable:
self.is_awaitable = is_awaitable
self._subfields_cache: Dict[Tuple, Dict[str, List[FieldNode]]] = {}
@classmethod
def build(
cls,
schema: GraphQLSchema,
document: DocumentNode,
root_value: Any = None,
context_value: Any = None,
raw_variable_values: Optional[Dict[str, Any]] = None,
operation_name: Optional[str] = None,
field_resolver: Optional[GraphQLFieldResolver] = None,
type_resolver: Optional[GraphQLTypeResolver] = None,
middleware: Optional[Middleware] = None,
is_awaitable: Optional[Callable[[Any], bool]] = None,
) -> Union[List[GraphQLError], "ExecutionContext"]:
"""Build an execution context
Constructs a ExecutionContext object from the arguments passed to execute, which
we will pass throughout the other execution methods.
Throws a GraphQLError if a valid execution context cannot be created.
For internal use only.
"""
operation: Optional[OperationDefinitionNode] = None
fragments: Dict[str, FragmentDefinitionNode] = {}
middleware_manager: Optional[MiddlewareManager] = None
if middleware is not None:
if isinstance(middleware, (list, tuple)):
middleware_manager = MiddlewareManager(*middleware)
elif isinstance(middleware, MiddlewareManager):
middleware_manager = middleware
else:
raise TypeError(
"Middleware must be passed as a list or tuple of functions"
" or objects, or as a single MiddlewareManager object."
f" Got {inspect(middleware)} instead."
)
for definition in document.definitions:
if isinstance(definition, OperationDefinitionNode):
if operation_name is None:
if operation:
return [
GraphQLError(
"Must provide operation name"
" if query contains multiple operations."
)
]
operation = definition
elif definition.name and definition.name.value == operation_name:
operation = definition
elif isinstance(definition, FragmentDefinitionNode):
fragments[definition.name.value] = definition
if not operation:
if operation_name is not None:
return [GraphQLError(f"Unknown operation named '{operation_name}'.")]
return [GraphQLError("Must provide an operation.")]
coerced_variable_values = get_variable_values(
schema,
operation.variable_definitions or FrozenList(),
raw_variable_values or {},
max_errors=50,
)
if isinstance(coerced_variable_values, list):
return coerced_variable_values # errors
return cls(
schema,
fragments,
root_value,
context_value,
operation,
coerced_variable_values, # coerced values
field_resolver or default_field_resolver,
type_resolver or default_type_resolver,
[],
middleware_manager,
is_awaitable,
)
def build_response(
self, data: AwaitableOrValue[Optional[Dict[str, Any]]]
) -> AwaitableOrValue[ExecutionResult]:
"""Build response.
Given a completed execution context and data, build the (data, errors) response
defined by the "Response" section of the GraphQL spec.
"""
if self.is_awaitable(data):
async def build_response_async() -> ExecutionResult:
return self.build_response(await data) # type: ignore
return build_response_async()
data = cast(Optional[Dict[str, Any]], data)
errors = self.errors
if not errors:
return ExecutionResult(data, None)
# Sort the error list in order to make it deterministic, since we might have
# been using parallel execution.
errors.sort(
key=lambda error: (error.locations or [], error.path or [], error.message)
)
return ExecutionResult(data, errors)
def execute_operation(
self, operation: OperationDefinitionNode, root_value: Any
) -> Optional[AwaitableOrValue[Any]]:
"""Execute an operation.
Implements the "Evaluating operations" section of the spec.
"""
type_ = get_operation_root_type(self.schema, operation)
fields = self.collect_fields(type_, operation.selection_set, {}, set())
path = None
# Errors from sub-fields of a NonNull type may propagate to the top level, at
# which point we still log the error and null the parent field, which in this
# case is the entire response.
#
# Similar to complete_value_catching_error.
try:
# noinspection PyArgumentList
result = (
self.execute_fields_serially
if operation.operation == OperationType.MUTATION
else self.execute_fields
)(type_, root_value, path, fields)
except GraphQLError as error:
self.errors.append(error)
return None
else:
if self.is_awaitable(result):
# noinspection PyShadowingNames
async def await_result() -> Any:
try:
return await result # type: ignore
except GraphQLError as error:
self.errors.append(error)
return await_result()
return result
def execute_fields_serially(
self,
parent_type: GraphQLObjectType,
source_value: Any,
path: Optional[Path],
fields: Dict[str, List[FieldNode]],
) -> AwaitableOrValue[Dict[str, Any]]:
"""Execute the given fields serially.
Implements the "Evaluating selection sets" section of the spec for "write" mode.
"""
results: AwaitableOrValue[Dict[str, Any]] = {}
is_awaitable = self.is_awaitable
for response_name, field_nodes in fields.items():
field_path = Path(path, response_name)
result = self.resolve_field(
parent_type, source_value, field_nodes, field_path
)
if result is Undefined:
continue
if is_awaitable(results):
# noinspection PyShadowingNames
async def await_and_set_result(
results: Awaitable[Dict[str, Any]],
response_name: str,
result: AwaitableOrValue[Any],
) -> Dict[str, Any]:
awaited_results = await results
awaited_results[response_name] = (
await result if is_awaitable(result) else result
)
return awaited_results
results = await_and_set_result(
cast(Awaitable, results), response_name, result
)
elif is_awaitable(result):
# noinspection PyShadowingNames
async def set_result(
results: Dict[str, Any], response_name: str, result: Awaitable,
) -> Dict[str, Any]:
results[response_name] = await result
return results
results = set_result(
cast(Dict[str, Any], results), response_name, result
)
else:
cast(Dict[str, Any], results)[response_name] = result
if is_awaitable(results):
# noinspection PyShadowingNames
async def get_results() -> Any:
return await cast(Awaitable, results)
return get_results()
return results
def execute_fields(
self,
parent_type: GraphQLObjectType,
source_value: Any,
path: Optional[Path],
fields: Dict[str, List[FieldNode]],
) -> AwaitableOrValue[Dict[str, Any]]:
"""Execute the given fields concurrently.
Implements the "Evaluating selection sets" section of the spec for "read" mode.
"""
results = {}
is_awaitable = self.is_awaitable
awaitable_fields: List[str] = []
append_awaitable = awaitable_fields.append
for response_name, field_nodes in fields.items():
field_path = Path(path, response_name)
result = self.resolve_field(
parent_type, source_value, field_nodes, field_path
)
if result is not Undefined:
results[response_name] = result
if is_awaitable(result):
append_awaitable(response_name)
# If there are no coroutines, we can just return the object
if not awaitable_fields:
return results
# Otherwise, results is a map from field name to the result of resolving that
# field, which is possibly a coroutine object. Return a coroutine object that
# will yield this same map, but with any coroutines awaited in parallel and
# replaced with the values they yielded.
async def get_results() -> Dict[str, Any]:
results.update(
zip(
awaitable_fields,
await gather(*(results[field] for field in awaitable_fields)),
)
)
return results
return get_results()
def collect_fields(
self,
runtime_type: GraphQLObjectType,
selection_set: SelectionSetNode,
fields: Dict[str, List[FieldNode]],
visited_fragment_names: Set[str],
) -> Dict[str, List[FieldNode]]:
"""Collect fields.
Given a selection_set, adds all of the fields in that selection to the passed in
map of fields, and returns it at the end.
collect_fields requires the "runtime type" of an object. For a field which
returns an Interface or Union type, the "runtime type" will be the actual
Object type returned by that field.
For internal use only.
"""
for selection in selection_set.selections:
if isinstance(selection, FieldNode):
if not self.should_include_node(selection):
continue
name = get_field_entry_key(selection)
fields.setdefault(name, []).append(selection)
elif isinstance(selection, InlineFragmentNode):
if not self.should_include_node(
selection
) or not self.does_fragment_condition_match(selection, runtime_type):
continue
self.collect_fields(
runtime_type,
selection.selection_set,
fields,
visited_fragment_names,
)
elif isinstance(selection, FragmentSpreadNode): # pragma: no cover else
frag_name = selection.name.value
if frag_name in visited_fragment_names or not self.should_include_node(
selection
):
continue
visited_fragment_names.add(frag_name)
fragment = self.fragments.get(frag_name)
if not fragment or not self.does_fragment_condition_match(
fragment, runtime_type
):
continue
self.collect_fields(
runtime_type, fragment.selection_set, fields, visited_fragment_names
)
return fields
def should_include_node(
self, node: Union[FragmentSpreadNode, FieldNode, InlineFragmentNode]
) -> bool:
"""Check if node should be included
Determines if a field should be included based on the @include and @skip
directives, where @skip has higher precedence than @include.
"""
skip = get_directive_values(GraphQLSkipDirective, node, self.variable_values)
if skip and skip["if"]:
return False
include = get_directive_values(
GraphQLIncludeDirective, node, self.variable_values
)
if include and not include["if"]:
return False
return True
def does_fragment_condition_match(
self,
fragment: Union[FragmentDefinitionNode, InlineFragmentNode],
type_: GraphQLObjectType,
) -> bool:
"""Determine if a fragment is applicable to the given type."""
type_condition_node = fragment.type_condition
if not type_condition_node:
return True
conditional_type = type_from_ast(self.schema, type_condition_node)
if conditional_type is type_:
return True
if is_abstract_type(conditional_type):
return self.schema.is_sub_type(
cast(GraphQLAbstractType, conditional_type), type_
)
return False
def build_resolve_info(
self,
field_def: GraphQLField,
field_nodes: List[FieldNode],
parent_type: GraphQLObjectType,
path: Path,
) -> GraphQLResolveInfo:
"""Build the GraphQLResolveInfo object.
For internal use only."""
# The resolve function's first argument is a collection of information about
# the current execution state.
return GraphQLResolveInfo(
field_nodes[0].name.value,
field_nodes,
field_def.type,
parent_type,
path,
self.schema,
self.fragments,
self.root_value,
self.operation,
self.variable_values,
self.context_value,
self.is_awaitable,
)
def resolve_field(
self,
parent_type: GraphQLObjectType,
source: Any,
field_nodes: List[FieldNode],
path: Path,
) -> AwaitableOrValue[Any]:
"""Resolve the field on the given source object.
In particular, this figures out the value that the field returns by calling its
resolve function, then calls complete_value to await coroutine objects,
serialize scalars, or execute the sub-selection-set for objects.
"""
field_node = field_nodes[0]
field_name = field_node.name.value
field_def = get_field_def(self.schema, parent_type, field_name)
if not field_def:
return Undefined
resolve_fn = field_def.resolve or self.field_resolver
if self.middleware_manager:
resolve_fn = self.middleware_manager.get_field_resolver(resolve_fn)
info = self.build_resolve_info(field_def, field_nodes, parent_type, path)
# Get the resolve function, regardless of if its result is normal or abrupt
# (error).
result = self.resolve_field_value_or_error(
field_def, field_nodes, resolve_fn, source, info
)
return self.complete_value_catching_error(
field_def.type, field_nodes, info, path, result
)
def resolve_field_value_or_error(
self,
field_def: GraphQLField,
field_nodes: List[FieldNode],
resolve_fn: GraphQLFieldResolver,
source: Any,
info: GraphQLResolveInfo,
) -> Union[Exception, Any]:
"""Resolve field to a value or an error.
Isolates the "ReturnOrAbrupt" behavior to not de-opt the resolve_field()
method. Returns the result of resolveFn or the abrupt-return Error object.
For internal use only.
"""
try:
# Build a dictionary of arguments from the field.arguments AST, using the
# variables scope to fulfill any variable references.
args = get_argument_values(field_def, field_nodes[0], self.variable_values)
# Note that contrary to the JavaScript implementation, we pass the context
# value as part of the resolve info.
result = resolve_fn(source, info, **args)
if self.is_awaitable(result):
# noinspection PyShadowingNames
async def await_result() -> Any:
try:
return await result
except GraphQLError as error:
return error
except Exception as error:
return GraphQLError(str(error), original_error=error)
return await_result()
return result
except GraphQLError as error:
return error
except Exception as error:
return GraphQLError(str(error), original_error=error)
def complete_value_catching_error(
self,
return_type: GraphQLOutputType,
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
path: Path,
result: Any,
) -> AwaitableOrValue[Any]:
"""Complete a value while catching an error.
This is a small wrapper around completeValue which detects and logs errors in
the execution context.
"""
completed: AwaitableOrValue[Any]
try:
if self.is_awaitable(result):
async def await_result() -> Any:
value = self.complete_value(
return_type, field_nodes, info, path, await result
)
if self.is_awaitable(value):
return await value
return value
completed = await_result()
else:
completed = self.complete_value(
return_type, field_nodes, info, path, result
)
if self.is_awaitable(completed):
# noinspection PyShadowingNames
async def await_completed() -> Any:
try:
return await completed
except Exception as error:
self.handle_field_error(error, field_nodes, path, return_type)
return await_completed()
return completed
except Exception as error:
self.handle_field_error(error, field_nodes, path, return_type)
return None
def handle_field_error(
self,
raw_error: Exception,
field_nodes: List[FieldNode],
path: Path,
return_type: GraphQLOutputType,
) -> None:
error = located_error(raw_error, field_nodes, path.as_list())
# If the field type is non-nullable, then it is resolved without any protection
# from errors, however it still properly locates the error.
if is_non_null_type(return_type):
raise error
# Otherwise, error protection is applied, logging the error and resolving a
# null value for this field if one is encountered.
self.errors.append(error)
return None
def complete_value(
self,
return_type: GraphQLOutputType,
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
path: Path,
result: Any,
) -> AwaitableOrValue[Any]:
"""Complete a value.
Implements the instructions for completeValue as defined in the "Field entries"
section of the spec.
If the field type is Non-Null, then this recursively completes the value for the
inner type. It throws a field error if that completion returns null, as per the
"Nullability" section of the spec.
If the field type is a List, then this recursively completes the value for the
inner type on each item in the list.
If the field type is a Scalar or Enum, ensures the completed value is a legal
value of the type by calling the ``serialize`` method of GraphQL type
definition.
If the field is an abstract type, determine the runtime type of the value and
then complete based on that type.
Otherwise, the field type expects a sub-selection set, and will complete the
value by evaluating all sub-selections.
"""
# If result is an Exception, throw a located error.
if isinstance(result, Exception):
raise result
# If field type is NonNull, complete for inner type, and throw field error if
# result is null.
if is_non_null_type(return_type):
completed = self.complete_value(
cast(GraphQLNonNull, return_type).of_type,
field_nodes,
info,
path,
result,
)
if completed is None:
raise TypeError(
"Cannot return null for non-nullable field"
f" {info.parent_type.name}.{info.field_name}."
)
return completed
# If result value is null or undefined then return null.
if result is None or result is Undefined:
return None
# If field type is List, complete each item in the list with inner type
if is_list_type(return_type):
return self.complete_list_value(
cast(GraphQLList, return_type), field_nodes, info, path, result
)
# If field type is a leaf type, Scalar or Enum, serialize to a valid value,
# returning null if serialization is not possible.
if is_leaf_type(return_type):
return self.complete_leaf_value(cast(GraphQLLeafType, return_type), result)
# If field type is an abstract type, Interface or Union, determine the runtime
# Object type and complete for that type.
if is_abstract_type(return_type):
return self.complete_abstract_value(
cast(GraphQLAbstractType, return_type), field_nodes, info, path, result
)
# If field type is Object, execute and complete all sub-selections.
if is_object_type(return_type):
return self.complete_object_value(
cast(GraphQLObjectType, return_type), field_nodes, info, path, result
)
# Not reachable. All possible output types have been considered.
raise TypeError( # pragma: no cover
"Cannot complete value of unexpected output type:"
f" '{inspect(return_type)}'."
)
def complete_list_value(
self,
return_type: GraphQLList[GraphQLOutputType],
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
path: Path,
result: Iterable[Any],
) -> AwaitableOrValue[Any]:
"""Complete a list value.
Complete a list value by completing each item in the list with the inner type.
"""
if not isinstance(result, Iterable) or isinstance(result, str):
raise GraphQLError(
"Expected Iterable, but did not find one for field"
f" '{info.parent_type.name}.{info.field_name}'."
)
# This is specified as a simple map, however we're optimizing the path where
# the list contains no coroutine objects by avoiding creating another coroutine
# object.
item_type = return_type.of_type
is_awaitable = self.is_awaitable
awaitable_indices: List[int] = []
append_awaitable = awaitable_indices.append
completed_results: List[Any] = []
append_result = completed_results.append
for index, item in enumerate(result):
# No need to modify the info object containing the path, since from here on
# it is not ever accessed by resolver functions.
field_path = path.add_key(index)
completed_item = self.complete_value_catching_error(
item_type, field_nodes, info, field_path, item
)
if is_awaitable(completed_item):
append_awaitable(index)
append_result(completed_item)
if not awaitable_indices:
return completed_results
# noinspection PyShadowingNames
async def get_completed_results() -> Any:
for index, result in zip(
awaitable_indices,
await gather(
*(completed_results[index] for index in awaitable_indices)
),
):
completed_results[index] = result
return completed_results
return get_completed_results()
@staticmethod
def complete_leaf_value(return_type: GraphQLLeafType, result: Any) -> Any:
"""Complete a leaf value.
Complete a Scalar or Enum by serializing to a valid value, returning null if
serialization is not possible.
"""
serialized_result = return_type.serialize(result)
if serialized_result is Undefined:
raise TypeError(
f"Expected a value of type '{inspect(return_type)}'"
f" but received: {inspect(result)}"
)
return serialized_result
def complete_abstract_value(
self,
return_type: GraphQLAbstractType,
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
path: Path,
result: Any,
) -> AwaitableOrValue[Any]:
"""Complete an abstract value.
Complete a value of an abstract type by determining the runtime object type of
that value, then complete the value for that type.
"""
resolve_type_fn = return_type.resolve_type or self.type_resolver
runtime_type = resolve_type_fn(result, info, return_type) # type: ignore
if self.is_awaitable(runtime_type):
async def await_complete_object_value() -> Any:
value = self.complete_object_value(
self.ensure_valid_runtime_type(
await runtime_type, # type: ignore
return_type,
field_nodes,
info,
result,
),
field_nodes,
info,
path,
result,
)
if self.is_awaitable(value):
return await value # type: ignore
return value
return await_complete_object_value()
runtime_type = cast(Optional[Union[GraphQLObjectType, str]], runtime_type)
return self.complete_object_value(
self.ensure_valid_runtime_type(
runtime_type, return_type, field_nodes, info, result
),
field_nodes,
info,
path,
result,
)
def ensure_valid_runtime_type(
self,
runtime_type_or_name: Optional[Union[GraphQLObjectType, str]],
return_type: GraphQLAbstractType,
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
result: Any,
) -> GraphQLObjectType:
runtime_type = (
self.schema.get_type(runtime_type_or_name)
if isinstance(runtime_type_or_name, str)
else runtime_type_or_name
)
if not is_object_type(runtime_type):
raise GraphQLError(
f"Abstract type '{return_type.name}' must resolve"
" to an Object type at runtime"
f" for field '{info.parent_type.name}.{info.field_name}'"
f" with value {inspect(result)}, received '{inspect(runtime_type)}'."
f" Either the '{return_type.name}' type should provide"
" a 'resolve_type' function or each possible type should"
" provide an 'is_type_of' function.",
field_nodes,
)
runtime_type = cast(GraphQLObjectType, runtime_type)
if not self.schema.is_sub_type(return_type, runtime_type):
raise GraphQLError(
f"Runtime Object type '{runtime_type.name}' is not a possible"
f" type for '{return_type.name}'.",
field_nodes,
)
return runtime_type
def complete_object_value(
self,
return_type: GraphQLObjectType,
field_nodes: List[FieldNode],
info: GraphQLResolveInfo,
path: Path,
result: Any,
) -> AwaitableOrValue[Dict[str, Any]]:
"""Complete an Object value by executing all sub-selections."""
# If there is an `is_type_of()` predicate function, call it with the current
# result. If `is_type_of()` returns False, then raise an error rather than
# continuing execution.
if return_type.is_type_of:
is_type_of = return_type.is_type_of(result, info)
if self.is_awaitable(is_type_of):
async def collect_and_execute_subfields_async() -> Dict[str, Any]:
if not await is_type_of: # type: ignore
raise invalid_return_type_error(
return_type, result, field_nodes
)
return self.collect_and_execute_subfields(
return_type, field_nodes, path, result
) # type: ignore
return collect_and_execute_subfields_async()
if not is_type_of:
raise invalid_return_type_error(return_type, result, field_nodes)
return self.collect_and_execute_subfields(
return_type, field_nodes, path, result
)
def collect_and_execute_subfields(
self,
return_type: GraphQLObjectType,
field_nodes: List[FieldNode],
path: Path,
result: Any,
) -> AwaitableOrValue[Dict[str, Any]]:
"""Collect sub-fields to execute to complete this value."""
sub_field_nodes = self.collect_subfields(return_type, field_nodes)
return self.execute_fields(return_type, result, path, sub_field_nodes)
def collect_subfields(
self, return_type: GraphQLObjectType, field_nodes: List[FieldNode]
) -> Dict[str, List[FieldNode]]:
"""Collect subfields.
A cached collection of relevant subfields with regard to the return type is
kept in the execution context as ``_subfields_cache``. This ensures the
subfields are not repeatedly calculated, which saves overhead when resolving
lists of values.
"""
cache = self._subfields_cache
# We cannot use the field_nodes themselves as key for the cache, since they
# are not hashable as a list. We also do not want to use the field_nodes
# themselves (converted to a tuple) as keys, since hashing them is slow.
# Therefore we use the ids of the field_nodes as keys. Note that we do not
# use the id of the list, since we want to hit the cache for all lists of
# the same nodes, not only for the same list of nodes. Also, the list id may
# even be reused, in which case we would get wrong results from the cache.
key = (
(return_type, id(field_nodes[0]))
if len(field_nodes) == 1 # optimize most frequent case
else tuple((return_type, *map(id, field_nodes)))
)
sub_field_nodes = cache.get(key)
if sub_field_nodes is None:
sub_field_nodes = {}
visited_fragment_names: Set[str] = set()
for field_node in field_nodes:
selection_set = field_node.selection_set
if selection_set:
sub_field_nodes = self.collect_fields(
return_type,
selection_set,
sub_field_nodes,
visited_fragment_names,
)
cache[key] = sub_field_nodes
return sub_field_nodes
def execute(
schema: GraphQLSchema,
document: DocumentNode,
root_value: Any = None,
context_value: Any = None,
variable_values: Optional[Dict[str, Any]] = None,
operation_name: Optional[str] = None,
field_resolver: Optional[GraphQLFieldResolver] = None,