strawberry-graphql 0.242.0__py3-none-any.whl → 0.243.1__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/aiohttp/views.py +2 -0
- strawberry/asgi/__init__.py +2 -0
- strawberry/channels/handlers/http_handler.py +2 -0
- strawberry/django/views.py +3 -4
- strawberry/ext/mypy_plugin.py +8 -1
- strawberry/fastapi/router.py +2 -0
- strawberry/flask/views.py +2 -0
- strawberry/http/async_base_view.py +1 -1
- strawberry/http/base.py +1 -0
- strawberry/http/sync_base_view.py +1 -1
- strawberry/litestar/controller.py +2 -0
- strawberry/quart/views.py +2 -0
- strawberry/sanic/views.py +2 -0
- {strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/METADATA +1 -1
- {strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/RECORD +18 -18
- {strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/entry_points.txt +0 -0
strawberry/aiohttp/views.py
CHANGED
@@ -111,6 +111,7 @@ class GraphQLView(
|
|
111
111
|
GRAPHQL_WS_PROTOCOL,
|
112
112
|
),
|
113
113
|
connection_init_wait_timeout: timedelta = timedelta(minutes=1),
|
114
|
+
multipart_uploads_enabled: bool = False,
|
114
115
|
) -> None:
|
115
116
|
self.schema = schema
|
116
117
|
self.allow_queries_via_get = allow_queries_via_get
|
@@ -119,6 +120,7 @@ class GraphQLView(
|
|
119
120
|
self.debug = debug
|
120
121
|
self.subscription_protocols = subscription_protocols
|
121
122
|
self.connection_init_wait_timeout = connection_init_wait_timeout
|
123
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
122
124
|
|
123
125
|
if graphiql is not None:
|
124
126
|
warnings.warn(
|
strawberry/asgi/__init__.py
CHANGED
@@ -106,6 +106,7 @@ class GraphQL(
|
|
106
106
|
GRAPHQL_WS_PROTOCOL,
|
107
107
|
),
|
108
108
|
connection_init_wait_timeout: timedelta = timedelta(minutes=1),
|
109
|
+
multipart_uploads_enabled: bool = False,
|
109
110
|
) -> None:
|
110
111
|
self.schema = schema
|
111
112
|
self.allow_queries_via_get = allow_queries_via_get
|
@@ -114,6 +115,7 @@ class GraphQL(
|
|
114
115
|
self.debug = debug
|
115
116
|
self.protocols = subscription_protocols
|
116
117
|
self.connection_init_wait_timeout = connection_init_wait_timeout
|
118
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
117
119
|
|
118
120
|
if graphiql is not None:
|
119
121
|
warnings.warn(
|
@@ -168,12 +168,14 @@ class BaseGraphQLHTTPConsumer(ChannelsConsumer, AsyncHttpConsumer):
|
|
168
168
|
graphql_ide: Optional[GraphQL_IDE] = "graphiql",
|
169
169
|
allow_queries_via_get: bool = True,
|
170
170
|
subscriptions_enabled: bool = True,
|
171
|
+
multipart_uploads_enabled: bool = False,
|
171
172
|
**kwargs: Any,
|
172
173
|
) -> None:
|
173
174
|
self.schema = schema
|
174
175
|
self.allow_queries_via_get = allow_queries_via_get
|
175
176
|
self.subscriptions_enabled = subscriptions_enabled
|
176
177
|
self._ide_subscriptions_enabled = subscriptions_enabled
|
178
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
177
179
|
|
178
180
|
if graphiql is not None:
|
179
181
|
warnings.warn(
|
strawberry/django/views.py
CHANGED
@@ -28,8 +28,7 @@ from django.template import RequestContext, Template
|
|
28
28
|
from django.template.exceptions import TemplateDoesNotExist
|
29
29
|
from django.template.loader import render_to_string
|
30
30
|
from django.template.response import TemplateResponse
|
31
|
-
from django.utils.decorators import classonlymethod
|
32
|
-
from django.views.decorators.csrf import csrf_exempt
|
31
|
+
from django.utils.decorators import classonlymethod
|
33
32
|
from django.views.generic import View
|
34
33
|
|
35
34
|
from strawberry.http.async_base_view import AsyncBaseHTTPView, AsyncHTTPRequestAdapter
|
@@ -147,11 +146,13 @@ class BaseView:
|
|
147
146
|
graphql_ide: Optional[GraphQL_IDE] = "graphiql",
|
148
147
|
allow_queries_via_get: bool = True,
|
149
148
|
subscriptions_enabled: bool = False,
|
149
|
+
multipart_uploads_enabled: bool = False,
|
150
150
|
**kwargs: Any,
|
151
151
|
) -> None:
|
152
152
|
self.schema = schema
|
153
153
|
self.allow_queries_via_get = allow_queries_via_get
|
154
154
|
self.subscriptions_enabled = subscriptions_enabled
|
155
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
155
156
|
|
156
157
|
if graphiql is not None:
|
157
158
|
warnings.warn(
|
@@ -229,7 +230,6 @@ class GraphQLView(
|
|
229
230
|
def get_sub_response(self, request: HttpRequest) -> TemporalHttpResponse:
|
230
231
|
return TemporalHttpResponse()
|
231
232
|
|
232
|
-
@method_decorator(csrf_exempt)
|
233
233
|
def dispatch(
|
234
234
|
self, request: HttpRequest, *args: Any, **kwargs: Any
|
235
235
|
) -> Union[HttpResponseNotAllowed, TemplateResponse, HttpResponseBase]:
|
@@ -288,7 +288,6 @@ class AsyncGraphQLView(
|
|
288
288
|
async def get_sub_response(self, request: HttpRequest) -> TemporalHttpResponse:
|
289
289
|
return TemporalHttpResponse()
|
290
290
|
|
291
|
-
@method_decorator(csrf_exempt)
|
292
291
|
async def dispatch( # pyright: ignore
|
293
292
|
self, request: HttpRequest, *args: Any, **kwargs: Any
|
294
293
|
) -> Union[HttpResponseNotAllowed, TemplateResponse, HttpResponseBase]:
|
strawberry/ext/mypy_plugin.py
CHANGED
@@ -481,7 +481,14 @@ def strawberry_pydantic_class_callback(ctx: ClassDefContext) -> None:
|
|
481
481
|
# Based on pydantic's default value
|
482
482
|
# https://github.com/pydantic/pydantic/pull/9606/files#diff-469037bbe55bbf9aa359480a16040d368c676adad736e133fb07e5e20d6ac523R1066
|
483
483
|
extra["force_typevars_invariant"] = False
|
484
|
-
|
484
|
+
if PYDANTIC_VERSION >= (2, 9, 0):
|
485
|
+
extra["model_strict"] = model_type.type.metadata[
|
486
|
+
PYDANTIC_METADATA_KEY
|
487
|
+
]["config"].get("strict", False)
|
488
|
+
extra["is_root_model_root"] = any(
|
489
|
+
"pydantic.root_model.RootModel" in base.fullname
|
490
|
+
for base in model_type.type.mro[:-1]
|
491
|
+
)
|
485
492
|
add_method(
|
486
493
|
ctx,
|
487
494
|
"to_pydantic",
|
strawberry/fastapi/router.py
CHANGED
@@ -156,6 +156,7 @@ class GraphQLRouter(
|
|
156
156
|
generate_unique_id_function: Callable[[APIRoute], str] = Default(
|
157
157
|
generate_unique_id
|
158
158
|
),
|
159
|
+
multipart_uploads_enabled: bool = False,
|
159
160
|
**kwargs: Any,
|
160
161
|
) -> None:
|
161
162
|
super().__init__(
|
@@ -190,6 +191,7 @@ class GraphQLRouter(
|
|
190
191
|
)
|
191
192
|
self.protocols = subscription_protocols
|
192
193
|
self.connection_init_wait_timeout = connection_init_wait_timeout
|
194
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
193
195
|
|
194
196
|
if graphiql is not None:
|
195
197
|
warnings.warn(
|
strawberry/flask/views.py
CHANGED
@@ -71,10 +71,12 @@ class BaseGraphQLView:
|
|
71
71
|
graphiql: Optional[bool] = None,
|
72
72
|
graphql_ide: Optional[GraphQL_IDE] = "graphiql",
|
73
73
|
allow_queries_via_get: bool = True,
|
74
|
+
multipart_uploads_enabled: bool = False,
|
74
75
|
) -> None:
|
75
76
|
self.schema = schema
|
76
77
|
self.graphiql = graphiql
|
77
78
|
self.allow_queries_via_get = allow_queries_via_get
|
79
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
78
80
|
|
79
81
|
if graphiql is not None:
|
80
82
|
warnings.warn(
|
@@ -333,7 +333,7 @@ class AsyncBaseHTTPView(
|
|
333
333
|
data = self.parse_query_params(request.query_params)
|
334
334
|
elif "application/json" in content_type:
|
335
335
|
data = self.parse_json(await request.get_body())
|
336
|
-
elif content_type == "multipart/form-data":
|
336
|
+
elif self.multipart_uploads_enabled and content_type == "multipart/form-data":
|
337
337
|
data = await self.parse_multipart(request)
|
338
338
|
else:
|
339
339
|
raise HTTPException(400, "Unsupported content type")
|
strawberry/http/base.py
CHANGED
@@ -143,7 +143,7 @@ class SyncBaseHTTPView(
|
|
143
143
|
elif "application/json" in content_type:
|
144
144
|
data = self.parse_json(request.body)
|
145
145
|
# TODO: multipart via get?
|
146
|
-
elif content_type == "multipart/form-data":
|
146
|
+
elif self.multipart_uploads_enabled and content_type == "multipart/form-data":
|
147
147
|
data = self.parse_multipart(request)
|
148
148
|
elif self._is_multipart_subscriptions(content_type, params):
|
149
149
|
raise HTTPException(
|
@@ -410,6 +410,7 @@ def make_graphql_controller(
|
|
410
410
|
GRAPHQL_WS_PROTOCOL,
|
411
411
|
),
|
412
412
|
connection_init_wait_timeout: timedelta = timedelta(minutes=1),
|
413
|
+
multipart_uploads_enabled: bool = False,
|
413
414
|
) -> Type[GraphQLController]: # sourcery skip: move-assign
|
414
415
|
if context_getter is None:
|
415
416
|
custom_context_getter_ = _none_custom_context_getter
|
@@ -456,6 +457,7 @@ def make_graphql_controller(
|
|
456
457
|
_GraphQLController.schema = schema_
|
457
458
|
_GraphQLController.allow_queries_via_get = allow_queries_via_get_
|
458
459
|
_GraphQLController.graphql_ide = graphql_ide_
|
460
|
+
_GraphQLController.multipart_uploads_enabled = multipart_uploads_enabled
|
459
461
|
|
460
462
|
return _GraphQLController
|
461
463
|
|
strawberry/quart/views.py
CHANGED
@@ -61,9 +61,11 @@ class GraphQLView(
|
|
61
61
|
graphiql: Optional[bool] = None,
|
62
62
|
graphql_ide: Optional[GraphQL_IDE] = "graphiql",
|
63
63
|
allow_queries_via_get: bool = True,
|
64
|
+
multipart_uploads_enabled: bool = False,
|
64
65
|
) -> None:
|
65
66
|
self.schema = schema
|
66
67
|
self.allow_queries_via_get = allow_queries_via_get
|
68
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
67
69
|
|
68
70
|
if graphiql is not None:
|
69
71
|
warnings.warn(
|
strawberry/sanic/views.py
CHANGED
@@ -102,11 +102,13 @@ class GraphQLView(
|
|
102
102
|
allow_queries_via_get: bool = True,
|
103
103
|
json_encoder: Optional[Type[json.JSONEncoder]] = None,
|
104
104
|
json_dumps_params: Optional[Dict[str, Any]] = None,
|
105
|
+
multipart_uploads_enabled: bool = False,
|
105
106
|
) -> None:
|
106
107
|
self.schema = schema
|
107
108
|
self.allow_queries_via_get = allow_queries_via_get
|
108
109
|
self.json_encoder = json_encoder
|
109
110
|
self.json_dumps_params = json_dumps_params
|
111
|
+
self.multipart_uploads_enabled = multipart_uploads_enabled
|
110
112
|
|
111
113
|
if self.json_encoder is not None: # pragma: no cover
|
112
114
|
warnings.warn(
|
@@ -6,9 +6,9 @@ strawberry/aiohttp/handlers/graphql_transport_ws_handler.py,sha256=-dihpF3pueV6j
|
|
6
6
|
strawberry/aiohttp/handlers/graphql_ws_handler.py,sha256=3U-E-o_QcLGoVaHE2oAPN3tTTIRwqGH0_688kbOtT7I,2437
|
7
7
|
strawberry/aiohttp/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
8
8
|
strawberry/aiohttp/test/client.py,sha256=4vjTDxtNVfpa74GfUUO7efPI6Ssh1vzfCYp3tPA-SLk,1357
|
9
|
-
strawberry/aiohttp/views.py,sha256=
|
9
|
+
strawberry/aiohttp/views.py,sha256=z9T3hJU9m410VjcZlxiatirh04-4-bPSzW7eCGqO0dc,7052
|
10
10
|
strawberry/annotation.py,sha256=ftSxGZQUk4C5_5YRM_wNJFVVnZi0XOp71kD7zv4oxbU,13077
|
11
|
-
strawberry/asgi/__init__.py,sha256=
|
11
|
+
strawberry/asgi/__init__.py,sha256=7YmrcQuD7fEPWo1Q60GVvVZdvMCNrTaic1y4pA_NpF4,7642
|
12
12
|
strawberry/asgi/handlers/__init__.py,sha256=rz5Gth2eJUn7tDq2--99KSNFeMdDPpLFCkfA7vge0cI,235
|
13
13
|
strawberry/asgi/handlers/graphql_transport_ws_handler.py,sha256=_5N58XdtCZndU81ky1f5cwG9E4NhysxP4uHlqqZNzn4,2147
|
14
14
|
strawberry/asgi/handlers/graphql_ws_handler.py,sha256=UnjkjyEen2P4Ld9AuazcZ2qY-VRdBubunb4JHtAP89o,2443
|
@@ -21,7 +21,7 @@ strawberry/channels/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
21
21
|
strawberry/channels/handlers/base.py,sha256=DlMmzuZl-feceZZ7UHLW-zBSNVxHvaWTqwyWDP-e1Dg,7861
|
22
22
|
strawberry/channels/handlers/graphql_transport_ws_handler.py,sha256=jMWmZ4Haoo3bf_bcM4ZheAjkreuhZBhwMhEX6GZ0Ue4,1995
|
23
23
|
strawberry/channels/handlers/graphql_ws_handler.py,sha256=ulkMQP7h5cFDDLVBWV-10fYa9GS2pFg3FdS0Axtov-U,2583
|
24
|
-
strawberry/channels/handlers/http_handler.py,sha256=
|
24
|
+
strawberry/channels/handlers/http_handler.py,sha256=KMvbsU6aYGkOnBVLdhWNIv5HJxD41qdx9OkFZnn8m0I,11258
|
25
25
|
strawberry/channels/handlers/ws_handler.py,sha256=hpgXSWsUMWP3ylJtHGFcLtNpSKgPMWJTfnUTKElBBzA,4747
|
26
26
|
strawberry/channels/router.py,sha256=DKIbl4zuRBhfvViUVpyu0Rf_WRT41E6uZC-Yic9Ltvo,2024
|
27
27
|
strawberry/channels/testing.py,sha256=GZqYu_rhrT1gLHmdI219L1fctVDmrv7AMHs0bwhXitc,6166
|
@@ -57,7 +57,7 @@ strawberry/django/apps.py,sha256=ZWw3Mzv1Cgy0T9xT8Jr2_dkCTZjT5WQABb34iqnu5pc,135
|
|
57
57
|
strawberry/django/context.py,sha256=XL85jDGAVnb2pwgm5uRUvIXwlGia3i-8ZVfKihf0T24,655
|
58
58
|
strawberry/django/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
59
59
|
strawberry/django/test/client.py,sha256=6dorWECd0wdn8fu3dabE-dfGK3uza58mGrdJ-xPct-w,626
|
60
|
-
strawberry/django/views.py,sha256=
|
60
|
+
strawberry/django/views.py,sha256=Is20K6DVqClY7HSpjgoc668qL5HlxZBpMnNYz0DDpBk,9810
|
61
61
|
strawberry/exceptions/__init__.py,sha256=DgdOJUs2xXHWcakr4tN6iIogltPi0MNnpu6MM6K0p5k,6347
|
62
62
|
strawberry/exceptions/conflicting_arguments.py,sha256=68f6kMSXdjuEjZkoe8o2I9PSIjwTS1kXsSGaQBPk_hI,1587
|
63
63
|
strawberry/exceptions/duplicated_type_name.py,sha256=-FG5qG_Mvkd7ROdOxCB9bijf8QR6Olryf07mbAFC0-U,2210
|
@@ -95,7 +95,7 @@ strawberry/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
95
|
strawberry/ext/dataclasses/LICENSE,sha256=WZgm35K_3NJwLqxpEHJJi7CWxVrwTumEz5D3Dtd7WnA,13925
|
96
96
|
strawberry/ext/dataclasses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
97
|
strawberry/ext/dataclasses/dataclasses.py,sha256=fshCPQm1o4q1AwzmQzdlBIQ_JUNnwSlvBfsLZ0zIHuk,2299
|
98
|
-
strawberry/ext/mypy_plugin.py,sha256=
|
98
|
+
strawberry/ext/mypy_plugin.py,sha256=9avF3kOcu7TLfsbqOHKBSOrtqgzuSTCK7uA66HUB6ok,20559
|
99
99
|
strawberry/extensions/__init__.py,sha256=SZ-YEMnxAzoDZFo-uHXMHOaY_PPkYm1muPpK4ccJ3Xk,1248
|
100
100
|
strawberry/extensions/add_validation_rules.py,sha256=abkOaXG-unAZj2xL2sspeUXpZKBCpj5Kr5h7TreN4gM,1338
|
101
101
|
strawberry/extensions/base_extension.py,sha256=Wf-Xu38lPXXBPuhsxpMi18yL5oH0uoskPhs08hfSYXg,2362
|
@@ -123,7 +123,7 @@ strawberry/fastapi/context.py,sha256=07991DShQoYMBVyQl9Mh5xvXQSNQI2RXT2ZQ5fWiga4
|
|
123
123
|
strawberry/fastapi/handlers/__init__.py,sha256=TziBHyibYBOGiidjpCkjNThYbVY7K_nt0hnRLVHVh3I,241
|
124
124
|
strawberry/fastapi/handlers/graphql_transport_ws_handler.py,sha256=5ivH7DJup0ZyGawAcj-n9VE_exBTje9Hou0_GIZCyD4,591
|
125
125
|
strawberry/fastapi/handlers/graphql_ws_handler.py,sha256=OTloVUvEgXDpqjOlBAT1FnaNWRAglQgAt613YH06roc,537
|
126
|
-
strawberry/fastapi/router.py,sha256=
|
126
|
+
strawberry/fastapi/router.py,sha256=B2_FjFAD27_yZKR2PoMUNfW7If9huPyzd5f-Bwbz6ZI,13054
|
127
127
|
strawberry/federation/__init__.py,sha256=FeUxLiBVuk9TKBmJJi51SeUaI8c80rS8hbl9No-hjII,535
|
128
128
|
strawberry/federation/argument.py,sha256=2m_wgp7uFQDimTDDCBBqSoWeTop4MD1-KjjYrumEJIw,833
|
129
129
|
strawberry/federation/enum.py,sha256=1rx50FiSMS-NjEFErhRSYB5no8TPsGMA_cH7hVbxAFI,3015
|
@@ -142,19 +142,19 @@ strawberry/file_uploads/__init__.py,sha256=v2-6FGBqnTnMPSUTFOiXpIutDMl-ga0PFtw5t
|
|
142
142
|
strawberry/file_uploads/scalars.py,sha256=NRDeB7j8aotqIkz9r62ISTf4DrxQxEZYUuHsX5K16aU,161
|
143
143
|
strawberry/file_uploads/utils.py,sha256=2zsXg3QsKgGLD7of2dW-vgQn_Naf7I3Men9PhEAFYwM,1160
|
144
144
|
strawberry/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
-
strawberry/flask/views.py,sha256=
|
145
|
+
strawberry/flask/views.py,sha256=Tc9Y1WwQyXR90-F2MEPpNkIcxuBri5iYCG69OnpbSe8,5772
|
146
146
|
strawberry/http/__init__.py,sha256=GSvHUDXl1cHfLnb37PXOAnxfoXhvz0f467P1O8uDatM,1620
|
147
|
-
strawberry/http/async_base_view.py,sha256=
|
148
|
-
strawberry/http/base.py,sha256=
|
147
|
+
strawberry/http/async_base_view.py,sha256=moI28qAGNqoKgWq5ZfmgNxmY97E8UF_Wk3PYFPeVh-g,11805
|
148
|
+
strawberry/http/base.py,sha256=swbBPIl1SYwX7gPq25ad4SyXg2Nl7ccM-0CrLFGT_FI,2613
|
149
149
|
strawberry/http/exceptions.py,sha256=WdWO3RvZDax_yAdD0zlVex9tQgwNx7tjz8_A8kP4YHo,193
|
150
150
|
strawberry/http/ides.py,sha256=3dqFRY8_9ZqyIYR_EyRdPZ1zhL3lxRYT2MPk84O_Tk8,874
|
151
151
|
strawberry/http/parse_content_type.py,sha256=sgtcOO_ZOFg7WWWibYyLc4SU58K-SErcW56kQczQmKU,412
|
152
|
-
strawberry/http/sync_base_view.py,sha256=
|
152
|
+
strawberry/http/sync_base_view.py,sha256=qA9o-Ic4ZcTXiKF02lBsrN7ET6VeXGYWf9m9mjhlfWU,7199
|
153
153
|
strawberry/http/temporal_response.py,sha256=QrGYSg7Apu7Mh-X_uPKDZby-UicXw2J_ywxaqhS8a_4,220
|
154
154
|
strawberry/http/types.py,sha256=cAuaiUuvaMI_XhZ2Ey6Ej23WyQKqMGFxzzpVHDjVazY,371
|
155
155
|
strawberry/http/typevars.py,sha256=flx5KPWnTwYju7VwRSVhMmx15Rl1pQT1K57_GnK72Hg,282
|
156
156
|
strawberry/litestar/__init__.py,sha256=zsXzg-mglCGUVO9iNXLm-yadoDSCK7k-zuyRqyvAh1w,237
|
157
|
-
strawberry/litestar/controller.py,sha256=
|
157
|
+
strawberry/litestar/controller.py,sha256=0t4BZ69sBYYndEqbLVm7TP7gLYSdY1tfJnYI7mccE9A,14184
|
158
158
|
strawberry/litestar/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
159
159
|
strawberry/litestar/handlers/graphql_transport_ws_handler.py,sha256=rDE-I02_fCov4FfpdBJBE2Xt-4FSNU8xJuQ6xedMF6E,2050
|
160
160
|
strawberry/litestar/handlers/graphql_ws_handler.py,sha256=b4gz9aEKtpXUcdyB3o9PzmINcuNReIshJM1bfPXH14Q,2347
|
@@ -165,7 +165,7 @@ strawberry/printer/ast_from_value.py,sha256=LgM5g2qvBOnAIf9znbiMEcRX0PGSQohR3Vr3
|
|
165
165
|
strawberry/printer/printer.py,sha256=GntTBivg3fb_zPM41Q8DtWMiRmkmM9xwTF-aFWvnqTg,17524
|
166
166
|
strawberry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
167
167
|
strawberry/quart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
strawberry/quart/views.py,sha256=
|
168
|
+
strawberry/quart/views.py,sha256=wuc5ESBPNKhY8QliZDPmOzk2WsdUvItnSv_-vVPBcLU,4002
|
169
169
|
strawberry/relay/__init__.py,sha256=Vi4btvA_g6Cj9Tk_F9GCSegapIf2WqkOWV8y3P0cTCs,553
|
170
170
|
strawberry/relay/exceptions.py,sha256=KZSRJYlfutrAQALtBPnzJHRIMK6GZSnKAT_H4wIzGcI,4035
|
171
171
|
strawberry/relay/fields.py,sha256=qrpDxDQ_bdzDUKtd8gxo9P3Oermxbux3yjFvHvHC1Ho,16927
|
@@ -175,7 +175,7 @@ strawberry/resolvers.py,sha256=Vdidc3YFc4-olSQZD_xQ1icyAFbyzqs_8I3eSpMFlA4,260
|
|
175
175
|
strawberry/sanic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
176
|
strawberry/sanic/context.py,sha256=qN7I9K_qIqgdbG_FbDl8XMb9aM1PyjIxSo8IAg2Uq8o,844
|
177
177
|
strawberry/sanic/utils.py,sha256=r-tCX0JzELAdupF7fFy65JWAxj6pABSntNbGNaGZT8o,1080
|
178
|
-
strawberry/sanic/views.py,sha256=
|
178
|
+
strawberry/sanic/views.py,sha256=YfTDowINXBz8P_zHH6-u1_agCG1okbWAURdvP4HG3eQ,6581
|
179
179
|
strawberry/scalars.py,sha256=c3y8EOmX-KUxSgRqk1TNercMA6_rgBHhQPp0z3C2zBU,2240
|
180
180
|
strawberry/schema/__init__.py,sha256=u1QCyDVQExUVDA20kyosKPz3TS5HMCN2NrXclhiFAL4,92
|
181
181
|
strawberry/schema/base.py,sha256=yarj62fhfCp0kToJPpWlNcCjyZV2CafbfpZ-yamjNVg,3730
|
@@ -245,8 +245,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
|
|
245
245
|
strawberry/utils/operation.py,sha256=SSXxN-vMqdHO6W2OZtip-1z7y4_A-eTVFdhDvhKeLCk,1193
|
246
246
|
strawberry/utils/str_converters.py,sha256=KGd7QH90RevaJjH6SQEkiVVsb8KuhJr_wv5AsI7UzQk,897
|
247
247
|
strawberry/utils/typing.py,sha256=3xws5kxSQGsp8BnYyUwClvxXNzZakMAuOPoq1rjHRuk,14252
|
248
|
-
strawberry_graphql-0.
|
249
|
-
strawberry_graphql-0.
|
250
|
-
strawberry_graphql-0.
|
251
|
-
strawberry_graphql-0.
|
252
|
-
strawberry_graphql-0.
|
248
|
+
strawberry_graphql-0.243.1.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
249
|
+
strawberry_graphql-0.243.1.dist-info/METADATA,sha256=pUMQj5rzTkjqWbNbKuzGnpZWoNaWKyyhKnkyKwzsvx0,7707
|
250
|
+
strawberry_graphql-0.243.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
251
|
+
strawberry_graphql-0.243.1.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
252
|
+
strawberry_graphql-0.243.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{strawberry_graphql-0.242.0.dist-info → strawberry_graphql-0.243.1.dist-info}/entry_points.txt
RENAMED
File without changes
|