@@ -106,7 +106,7 @@ def __init__(
106106 :param serialize_variables: whether the variable values should be
107107 serialized. Used for custom scalars and/or enums. Default: False.
108108 :param parse_results: Whether gql will try to parse the serialized output
109- sent by the backend. Can be used to unserialize custom scalars or enums.
109+ sent by the backend. Can be used to deserialize custom scalars or enums.
110110 :param batch_interval: Time to wait in seconds for batching requests together.
111111 Batching is disabled (by default) if 0.
112112 :param batch_max: Maximum number of requests in a single batch.
@@ -892,7 +892,7 @@ def _execute(
892892 :param serialize_variables: whether the variable values should be
893893 serialized. Used for custom scalars and/or enums.
894894 By default use the serialize_variables argument of the client.
895- :param parse_result: Whether gql will unserialize the result.
895+ :param parse_result: Whether gql will deserialize the result.
896896 By default use the parse_results argument of the client.
897897
898898 The extra arguments are passed to the transport execute method."""
@@ -1006,7 +1006,7 @@ def execute(
10061006 :param serialize_variables: whether the variable values should be
10071007 serialized. Used for custom scalars and/or enums.
10081008 By default use the serialize_variables argument of the client.
1009- :param parse_result: Whether gql will unserialize the result.
1009+ :param parse_result: Whether gql will deserialize the result.
10101010 By default use the parse_results argument of the client.
10111011 :param get_execution_result: return the full ExecutionResult instance instead of
10121012 only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1057,7 +1057,7 @@ def _execute_batch(
10571057 :param serialize_variables: whether the variable values should be
10581058 serialized. Used for custom scalars and/or enums.
10591059 By default use the serialize_variables argument of the client.
1060- :param parse_result: Whether gql will unserialize the result.
1060+ :param parse_result: Whether gql will deserialize the result.
10611061 By default use the parse_results argument of the client.
10621062 :param validate_document: Whether we still need to validate the document.
10631063
@@ -1151,7 +1151,7 @@ def execute_batch(
11511151 :param serialize_variables: whether the variable values should be
11521152 serialized. Used for custom scalars and/or enums.
11531153 By default use the serialize_variables argument of the client.
1154- :param parse_result: Whether gql will unserialize the result.
1154+ :param parse_result: Whether gql will deserialize the result.
11551155 By default use the parse_results argument of the client.
11561156 :param get_execution_result: return the full ExecutionResult instance instead of
11571157 only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1333,7 +1333,7 @@ async def _subscribe(
13331333 :param serialize_variables: whether the variable values should be
13341334 serialized. Used for custom scalars and/or enums.
13351335 By default use the serialize_variables argument of the client.
1336- :param parse_result: Whether gql will unserialize the result.
1336+ :param parse_result: Whether gql will deserialize the result.
13371337 By default use the parse_results argument of the client.
13381338
13391339 The extra arguments are passed to the transport subscribe method."""
@@ -1454,7 +1454,7 @@ async def subscribe(
14541454 :param serialize_variables: whether the variable values should be
14551455 serialized. Used for custom scalars and/or enums.
14561456 By default use the serialize_variables argument of the client.
1457- :param parse_result: Whether gql will unserialize the result.
1457+ :param parse_result: Whether gql will deserialize the result.
14581458 By default use the parse_results argument of the client.
14591459 :param get_execution_result: yield the full ExecutionResult instance instead of
14601460 only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1511,7 +1511,7 @@ async def _execute(
15111511 :param serialize_variables: whether the variable values should be
15121512 serialized. Used for custom scalars and/or enums.
15131513 By default use the serialize_variables argument of the client.
1514- :param parse_result: Whether gql will unserialize the result.
1514+ :param parse_result: Whether gql will deserialize the result.
15151515 By default use the parse_results argument of the client.
15161516
15171517 The extra arguments are passed to the transport execute method."""
@@ -1617,7 +1617,7 @@ async def execute(
16171617 :param serialize_variables: whether the variable values should be
16181618 serialized. Used for custom scalars and/or enums.
16191619 By default use the serialize_variables argument of the client.
1620- :param parse_result: Whether gql will unserialize the result.
1620+ :param parse_result: Whether gql will deserialize the result.
16211621 By default use the parse_results argument of the client.
16221622 :param get_execution_result: return the full ExecutionResult instance instead of
16231623 only the "data" field. Necessary if you want to get the "extensions" field.
0 commit comments