@@ -19,7 +19,7 @@ def graphql_query(
19
19
Args:
20
20
query (string) - GraphQL query to run
21
21
operation_name (string) - If the query is a mutation or named query, you must
22
- supply the op_name . For annon queries ("{ ... }"),
22
+ supply the operation_name . For annon queries ("{ ... }"),
23
23
should be None (default).
24
24
input_data (dict) - If provided, the $input variable in GraphQL will be set
25
25
to this value. If both ``input_data`` and ``variables``,
@@ -78,7 +78,7 @@ def query(
78
78
Args:
79
79
query (string) - GraphQL query to run
80
80
operation_name (string) - If the query is a mutation or named query, you must
81
- supply the op_name . For annon queries ("{ ... }"),
81
+ supply the operation_name . For annon queries ("{ ... }"),
82
82
should be None (default).
83
83
input_data (dict) - If provided, the $input variable in GraphQL will be set
84
84
to this value. If both ``input_data`` and ``variables``,
@@ -89,7 +89,7 @@ def query(
89
89
headers (dict) - If provided, the headers in POST request to GRAPHQL_URL
90
90
will be set to this value. Keys should be prepended with
91
91
"HTTP_" (e.g. to specify the "Authorization" HTTP header,
92
- use "HTTP_AUTHORIZATION" as the key).
92
+ use "HTTP_AUTHORIZATION" as the key).
93
93
94
94
Returns:
95
95
Response object from client
0 commit comments