strawberry-graphql 0.274.1__py3-none-any.whl → 0.274.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- strawberry/schema/schema.py +4 -0
- strawberry/types/execution.py +2 -0
- {strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/METADATA +1 -1
- {strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/RECORD +7 -7
- {strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/entry_points.txt +0 -0
strawberry/schema/schema.py
CHANGED
@@ -412,6 +412,7 @@ class Schema(BaseSchema):
|
|
412
412
|
context_value: Optional[Any] = None,
|
413
413
|
root_value: Optional[Any] = None,
|
414
414
|
operation_name: Optional[str] = None,
|
415
|
+
operation_extensions: Optional[dict[str, Any]] = None,
|
415
416
|
) -> ExecutionContext:
|
416
417
|
return ExecutionContext(
|
417
418
|
query=query,
|
@@ -421,6 +422,7 @@ class Schema(BaseSchema):
|
|
421
422
|
root_value=root_value,
|
422
423
|
variables=variable_values,
|
423
424
|
provided_operation_name=operation_name,
|
425
|
+
operation_extensions=operation_extensions,
|
424
426
|
)
|
425
427
|
|
426
428
|
@lru_cache
|
@@ -554,6 +556,7 @@ class Schema(BaseSchema):
|
|
554
556
|
context_value=context_value,
|
555
557
|
root_value=root_value,
|
556
558
|
operation_name=operation_name,
|
559
|
+
operation_extensions=operation_extensions,
|
557
560
|
)
|
558
561
|
extensions = self.get_extensions()
|
559
562
|
# TODO (#3571): remove this when we implement execution context as parameter.
|
@@ -646,6 +649,7 @@ class Schema(BaseSchema):
|
|
646
649
|
context_value=context_value,
|
647
650
|
root_value=root_value,
|
648
651
|
operation_name=operation_name,
|
652
|
+
operation_extensions=operation_extensions,
|
649
653
|
)
|
650
654
|
extensions = self._sync_extensions
|
651
655
|
# TODO (#3571): remove this when we implement execution context as parameter.
|
strawberry/types/execution.py
CHANGED
@@ -52,6 +52,8 @@ class ExecutionContext:
|
|
52
52
|
result: Optional[GraphQLExecutionResult] = None
|
53
53
|
extensions_results: dict[str, Any] = dataclasses.field(default_factory=dict)
|
54
54
|
|
55
|
+
operation_extensions: Optional[dict[str, Any]] = None
|
56
|
+
|
55
57
|
def __post_init__(self, provided_operation_name: str | None) -> None:
|
56
58
|
self._provided_operation_name = provided_operation_name
|
57
59
|
|
@@ -170,7 +170,7 @@ strawberry/schema/compat.py,sha256=xNpOEDfi-MODpplMGaKuKeQIVcr-tcAaKaU3TlBc1Zs,1
|
|
170
170
|
strawberry/schema/config.py,sha256=6d2MPrAgq97-7aze555dRcB3yw-aeUexYMP3KVN22c0,1024
|
171
171
|
strawberry/schema/exceptions.py,sha256=8gsMxxFDynMvRkUDuVL9Wwxk_zsmo6QoJ2l4NPxd64M,1137
|
172
172
|
strawberry/schema/name_converter.py,sha256=xFOXEgqldFkxXRkIQvsJN1dPkWbEUaIrTYNOMYSEVwQ,6945
|
173
|
-
strawberry/schema/schema.py,sha256
|
173
|
+
strawberry/schema/schema.py,sha256=-dVGJfOAyq-w2lpEbzCaiRNPMH68nirv-Q6gZ4aW0UU,37951
|
174
174
|
strawberry/schema/schema_converter.py,sha256=vxFghA8c4vPLx0XM07gjIbWqMWUnaognzmsuCWTSkTk,39112
|
175
175
|
strawberry/schema/types/__init__.py,sha256=oHO3COWhL3L1KLYCJNY1XFf5xt2GGtHiMC-UaYbFfnA,68
|
176
176
|
strawberry/schema/types/base_scalars.py,sha256=JRUq0WjEkR9dFewstZnqnZKp0uOEipo4UXNF5dzRf4M,1971
|
@@ -203,7 +203,7 @@ strawberry/types/auto.py,sha256=WZ2cQAI8nREUigBzpzFqIKGjJ_C2VqpAPNe8vPjTciM,3007
|
|
203
203
|
strawberry/types/base.py,sha256=Bfa-5Wen8qR7m6tlSMRRGlGE-chRGMHjQMopfNdbbrk,15197
|
204
204
|
strawberry/types/cast.py,sha256=fx86MkLW77GIximBAwUk5vZxSGwDqUA6XicXvz8EXwQ,916
|
205
205
|
strawberry/types/enum.py,sha256=IcCz0FLswJtDC_bU8aG1cjreawcqHywAzzVRBZUSAqs,6229
|
206
|
-
strawberry/types/execution.py,sha256=
|
206
|
+
strawberry/types/execution.py,sha256=kW5rgkWP98oysJWNc_fcxyO1PZ36NJpPTPZpZP2ZXYk,3820
|
207
207
|
strawberry/types/field.py,sha256=vxb7JvkHfRmDCYsjhDmVnO2lMbtSOteQm3jQUeSFu6g,21605
|
208
208
|
strawberry/types/fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
209
209
|
strawberry/types/fields/resolver.py,sha256=b6lxfw6AMOUFWm7vs7a9KzNkpR8b_S110DoIosrrWDQ,14679
|
@@ -232,8 +232,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
|
|
232
232
|
strawberry/utils/operation.py,sha256=ZgVOw3K2jQuLjNOYUHauF7itJD0QDNoPw9PBi0IYf6k,1234
|
233
233
|
strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
|
234
234
|
strawberry/utils/typing.py,sha256=SDvX-Du-9HAV3-XXjqi7Q5f5qPDDFd_gASIITiwBQT4,14073
|
235
|
-
strawberry_graphql-0.274.
|
236
|
-
strawberry_graphql-0.274.
|
237
|
-
strawberry_graphql-0.274.
|
238
|
-
strawberry_graphql-0.274.
|
239
|
-
strawberry_graphql-0.274.
|
235
|
+
strawberry_graphql-0.274.2.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
236
|
+
strawberry_graphql-0.274.2.dist-info/METADATA,sha256=wiQIHSo_eBtZMKje2nrJOi6pDCfyovgEXL8bECIeefI,7444
|
237
|
+
strawberry_graphql-0.274.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
238
|
+
strawberry_graphql-0.274.2.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
239
|
+
strawberry_graphql-0.274.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{strawberry_graphql-0.274.1.dist-info → strawberry_graphql-0.274.2.dist-info}/entry_points.txt
RENAMED
File without changes
|