@@ -106,7 +106,7 @@ def __init__(
106
106
:param serialize_variables: whether the variable values should be
107
107
serialized. Used for custom scalars and/or enums. Default: False.
108
108
: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.
110
110
:param batch_interval: Time to wait in seconds for batching requests together.
111
111
Batching is disabled (by default) if 0.
112
112
:param batch_max: Maximum number of requests in a single batch.
@@ -892,7 +892,7 @@ def _execute(
892
892
:param serialize_variables: whether the variable values should be
893
893
serialized. Used for custom scalars and/or enums.
894
894
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.
896
896
By default use the parse_results argument of the client.
897
897
898
898
The extra arguments are passed to the transport execute method."""
@@ -1006,7 +1006,7 @@ def execute(
1006
1006
:param serialize_variables: whether the variable values should be
1007
1007
serialized. Used for custom scalars and/or enums.
1008
1008
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.
1010
1010
By default use the parse_results argument of the client.
1011
1011
:param get_execution_result: return the full ExecutionResult instance instead of
1012
1012
only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1057,7 +1057,7 @@ def _execute_batch(
1057
1057
:param serialize_variables: whether the variable values should be
1058
1058
serialized. Used for custom scalars and/or enums.
1059
1059
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.
1061
1061
By default use the parse_results argument of the client.
1062
1062
:param validate_document: Whether we still need to validate the document.
1063
1063
@@ -1151,7 +1151,7 @@ def execute_batch(
1151
1151
:param serialize_variables: whether the variable values should be
1152
1152
serialized. Used for custom scalars and/or enums.
1153
1153
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.
1155
1155
By default use the parse_results argument of the client.
1156
1156
:param get_execution_result: return the full ExecutionResult instance instead of
1157
1157
only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1333,7 +1333,7 @@ async def _subscribe(
1333
1333
:param serialize_variables: whether the variable values should be
1334
1334
serialized. Used for custom scalars and/or enums.
1335
1335
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.
1337
1337
By default use the parse_results argument of the client.
1338
1338
1339
1339
The extra arguments are passed to the transport subscribe method."""
@@ -1454,7 +1454,7 @@ async def subscribe(
1454
1454
:param serialize_variables: whether the variable values should be
1455
1455
serialized. Used for custom scalars and/or enums.
1456
1456
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.
1458
1458
By default use the parse_results argument of the client.
1459
1459
:param get_execution_result: yield the full ExecutionResult instance instead of
1460
1460
only the "data" field. Necessary if you want to get the "extensions" field.
@@ -1511,7 +1511,7 @@ async def _execute(
1511
1511
:param serialize_variables: whether the variable values should be
1512
1512
serialized. Used for custom scalars and/or enums.
1513
1513
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.
1515
1515
By default use the parse_results argument of the client.
1516
1516
1517
1517
The extra arguments are passed to the transport execute method."""
@@ -1617,7 +1617,7 @@ async def execute(
1617
1617
:param serialize_variables: whether the variable values should be
1618
1618
serialized. Used for custom scalars and/or enums.
1619
1619
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.
1621
1621
By default use the parse_results argument of the client.
1622
1622
:param get_execution_result: return the full ExecutionResult instance instead of
1623
1623
only the "data" field. Necessary if you want to get the "extensions" field.
0 commit comments