@@ -315,9 +315,10 @@ def _execute(
315
315
:param variable_values: Dictionary of input parameters.
316
316
:param operation_name: Name of the operation that shall be executed.
317
317
:param serialize_variables: whether the variable values should be
318
- serialized. Used for custom scalars and/or enums. Default: False.
318
+ serialized. Used for custom scalars and/or enums.
319
+ By default use the serialize_variables argument of the client.
319
320
:param parse_result: Whether gql will unserialize the result.
320
- By default use the parse_results attribute of the client.
321
+ By default use the parse_results argument of the client.
321
322
322
323
The extra arguments are passed to the transport execute method."""
323
324
@@ -378,9 +379,10 @@ def execute(
378
379
:param variable_values: Dictionary of input parameters.
379
380
:param operation_name: Name of the operation that shall be executed.
380
381
:param serialize_variables: whether the variable values should be
381
- serialized. Used for custom scalars and/or enums. Default: False.
382
+ serialized. Used for custom scalars and/or enums.
383
+ By default use the serialize_variables argument of the client.
382
384
:param parse_result: Whether gql will unserialize the result.
383
- By default use the parse_results attribute of the client.
385
+ By default use the parse_results argument of the client.
384
386
:param get_execution_result: return the full ExecutionResult instance instead of
385
387
only the "data" field. Necessary if you want to get the "extensions" field.
386
388
@@ -462,9 +464,10 @@ async def _subscribe(
462
464
:param variable_values: Dictionary of input parameters.
463
465
:param operation_name: Name of the operation that shall be executed.
464
466
:param serialize_variables: whether the variable values should be
465
- serialized. Used for custom scalars and/or enums. Default: False.
467
+ serialized. Used for custom scalars and/or enums.
468
+ By default use the serialize_variables argument of the client.
466
469
:param parse_result: Whether gql will unserialize the result.
467
- By default use the parse_results attribute of the client.
470
+ By default use the parse_results argument of the client.
468
471
469
472
The extra arguments are passed to the transport subscribe method."""
470
473
@@ -539,9 +542,10 @@ async def subscribe(
539
542
:param variable_values: Dictionary of input parameters.
540
543
:param operation_name: Name of the operation that shall be executed.
541
544
:param serialize_variables: whether the variable values should be
542
- serialized. Used for custom scalars and/or enums. Default: False.
545
+ serialized. Used for custom scalars and/or enums.
546
+ By default use the serialize_variables argument of the client.
543
547
:param parse_result: Whether gql will unserialize the result.
544
- By default use the parse_results attribute of the client.
548
+ By default use the parse_results argument of the client.
545
549
:param get_execution_result: yield the full ExecutionResult instance instead of
546
550
only the "data" field. Necessary if you want to get the "extensions" field.
547
551
@@ -598,9 +602,10 @@ async def _execute(
598
602
:param variable_values: Dictionary of input parameters.
599
603
:param operation_name: Name of the operation that shall be executed.
600
604
:param serialize_variables: whether the variable values should be
601
- serialized. Used for custom scalars and/or enums. Default: False.
605
+ serialized. Used for custom scalars and/or enums.
606
+ By default use the serialize_variables argument of the client.
602
607
:param parse_result: Whether gql will unserialize the result.
603
- By default use the parse_results attribute of the client.
608
+ By default use the parse_results argument of the client.
604
609
605
610
The extra arguments are passed to the transport execute method."""
606
611
@@ -665,9 +670,10 @@ async def execute(
665
670
:param variable_values: Dictionary of input parameters.
666
671
:param operation_name: Name of the operation that shall be executed.
667
672
:param serialize_variables: whether the variable values should be
668
- serialized. Used for custom scalars and/or enums. Default: False.
673
+ serialized. Used for custom scalars and/or enums.
674
+ By default use the serialize_variables argument of the client.
669
675
:param parse_result: Whether gql will unserialize the result.
670
- By default use the parse_results attribute of the client.
676
+ By default use the parse_results argument of the client.
671
677
:param get_execution_result: return the full ExecutionResult instance instead of
672
678
only the "data" field. Necessary if you want to get the "extensions" field.
673
679
0 commit comments