We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bb0b05 commit d82cc32Copy full SHA for d82cc32
src/graphql/execution/execute.py
@@ -1651,18 +1651,16 @@ def collect_subfields(
1651
1652
def map_source_to_response(
1653
self, result_or_stream: Union[ExecutionResult, AsyncIterable[Any]]
1654
- ) -> AwaitableOrValue[
1655
- Union[
1656
- AsyncGenerator[
1657
1658
- ExecutionResult,
1659
- InitialIncrementalExecutionResult,
1660
- SubsequentIncrementalExecutionResult,
1661
- ],
1662
- None,
+ ) -> Union[
+ AsyncGenerator[
+ Union[
+ ExecutionResult,
+ InitialIncrementalExecutionResult,
+ SubsequentIncrementalExecutionResult,
1663
],
1664
1665
- ]
+ None,
+ ],
1666
]:
1667
"""Map source result to response.
1668
0 commit comments