@@ -19,7 +19,7 @@ def graphql_query(
1919 Args:
2020 query (string) - GraphQL query to run
2121 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 ("{ ... }"),
2323 should be None (default).
2424 input_data (dict) - If provided, the $input variable in GraphQL will be set
2525 to this value. If both ``input_data`` and ``variables``,
@@ -78,7 +78,7 @@ def query(
7878 Args:
7979 query (string) - GraphQL query to run
8080 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 ("{ ... }"),
8282 should be None (default).
8383 input_data (dict) - If provided, the $input variable in GraphQL will be set
8484 to this value. If both ``input_data`` and ``variables``,
@@ -89,7 +89,7 @@ def query(
8989 headers (dict) - If provided, the headers in POST request to GRAPHQL_URL
9090 will be set to this value. Keys should be prepended with
9191 "HTTP_" (e.g. to specify the "Authorization" HTTP header,
92- use "HTTP_AUTHORIZATION" as the key).
92+ use "HTTP_AUTHORIZATION" as the key).
9393
9494 Returns:
9595 Response object from client
0 commit comments