From 404d850da2edf9e3cb19f74f15527af68e029854 Mon Sep 17 00:00:00 2001 From: Aaron Forsander Date: Wed, 2 Mar 2022 17:35:40 -0500 Subject: [PATCH] Fix documentation references: op_name -> operation_name --- docs/testing.rst | 10 +++++----- graphene_django/utils/testing.py | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/testing.rst b/docs/testing.rst index 65b6f64..fb0a85d 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -27,7 +27,7 @@ Usage: } } ''', - op_name='myModel' + operation_name='myModel' ) content = json.loads(response.content) @@ -48,7 +48,7 @@ Usage: } } ''', - op_name='myModel', + operation_name='myModel', variables={'id': 1} ) @@ -72,7 +72,7 @@ Usage: } } ''', - op_name='myMutation', + operation_name='myMutation', input_data={'my_field': 'foo', 'other_field': 'bar'} ) @@ -107,7 +107,7 @@ Usage: } } ''', - op_name='myMutation', + operation_name='myMutation', input_data={'my_field': 'foo', 'other_field': 'bar'} ) @@ -147,7 +147,7 @@ To use pytest define a simple fixture using the query helper below } } ''', - op_name='myModel' + operation_name='myModel' ) content = json.loads(response.content) diff --git a/graphene_django/utils/testing.py b/graphene_django/utils/testing.py index b91a02f..f94c385 100644 --- a/graphene_django/utils/testing.py +++ b/graphene_django/utils/testing.py @@ -19,7 +19,7 @@ def graphql_query( Args: query (string) - GraphQL query to run operation_name (string) - If the query is a mutation or named query, you must - supply the op_name. For annon queries ("{ ... }"), + supply the operation_name. For annon queries ("{ ... }"), should be None (default). input_data (dict) - If provided, the $input variable in GraphQL will be set to this value. If both ``input_data`` and ``variables``, @@ -78,7 +78,7 @@ class GraphQLTestMixin(object): Args: query (string) - GraphQL query to run operation_name (string) - If the query is a mutation or named query, you must - supply the op_name. For annon queries ("{ ... }"), + supply the operation_name. For annon queries ("{ ... }"), should be None (default). input_data (dict) - If provided, the $input variable in GraphQL will be set to this value. If both ``input_data`` and ``variables``, @@ -89,7 +89,7 @@ class GraphQLTestMixin(object): headers (dict) - If provided, the headers in POST request to GRAPHQL_URL will be set to this value. Keys should be prepended with "HTTP_" (e.g. to specify the "Authorization" HTTP header, - use "HTTP_AUTHORIZATION" as the key). + use "HTTP_AUTHORIZATION" as the key). Returns: Response object from client