We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any reason that the return type of complete_list_value is AwaitableOrValue[Any] rather than AwaitableOrValue[List[Any]]:
complete_list_value
AwaitableOrValue[Any]
AwaitableOrValue[List[Any]]
graphql-core/src/graphql/execution/execute.py
Lines 756 to 763 in c6f73a8
For comparison, execute_fields returns AwaitableOrValue[Dict[str, Any]]:
execute_fields
AwaitableOrValue[Dict[str, Any]]
Lines 418 to 424 in c6f73a8
The text was updated successfully, but these errors were encountered:
8b9f960
Thank you, good catch! I've fixed it already.
Sorry, something went wrong.
@Cito I think you also want to update the return types of get_completed_results, etc (the inner / helper functions).
get_completed_results
Yes, but only one of them needed to be changed (5bfc3a0). Anything else I overlooked?
That looks good.
Cito
No branches or pull requests
Any reason that the return type of
complete_list_value
isAwaitableOrValue[Any]
rather thanAwaitableOrValue[List[Any]]
:graphql-core/src/graphql/execution/execute.py
Lines 756 to 763 in c6f73a8
For comparison,
execute_fields
returnsAwaitableOrValue[Dict[str, Any]]
:graphql-core/src/graphql/execution/execute.py
Lines 418 to 424 in c6f73a8
The text was updated successfully, but these errors were encountered: