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(
8585
8686 :param document: GraphQL query as AST Node object.
8787 :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).
8890 :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.
9193 """
9294 query_str = print_ast (document )
9395 payload = {"query" : query_str } # type: Dict
You can’t perform that action at this time.
0 commit comments