File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -85,9 +85,11 @@ def execute(
85
85
86
86
:param document: GraphQL query as AST Node object.
87
87
:param variable_values: Dictionary of input parameters (Default: None).
88
+ :param operation_name: Name of the operation that shall be executed.
89
+ Only required in multi-operation documents (Default: None).
88
90
:param timeout: Specifies a default timeout for requests (Default: None).
89
- :return: The result of execution. `data` is the result of executing the query, `errors` is null if no errors
90
- occurred, and is a non-empty array if an error occurred.
91
+ :return: The result of execution. `data` is the result of executing the query,
92
+ `errors` is null if no errors occurred, and is a non-empty array if an error occurred.
91
93
"""
92
94
query_str = print_ast (document )
93
95
payload = {"query" : query_str } # type: Dict
You can’t perform that action at this time.
0 commit comments