strawberry-graphql 0.263.0.dev1743582446__py3-none-any.whl → 0.263.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/__init__.py +0 -2
- strawberry/aiohttp/views.py +1 -1
- strawberry/annotation.py +9 -13
- strawberry/asgi/__init__.py +1 -1
- strawberry/chalice/views.py +2 -2
- strawberry/channels/handlers/http_handler.py +4 -2
- strawberry/cli/commands/codegen.py +1 -1
- strawberry/codegen/query_codegen.py +6 -6
- strawberry/django/views.py +2 -2
- strawberry/exceptions/handler.py +1 -1
- strawberry/experimental/pydantic/_compat.py +34 -4
- strawberry/experimental/pydantic/conversion.py +1 -1
- strawberry/experimental/pydantic/error_type.py +1 -1
- strawberry/experimental/pydantic/object_type.py +7 -3
- strawberry/experimental/pydantic/utils.py +8 -2
- strawberry/ext/mypy_plugin.py +3 -3
- strawberry/extensions/tracing/opentelemetry.py +2 -1
- strawberry/fastapi/router.py +1 -1
- strawberry/federation/schema.py +1 -1
- strawberry/flask/views.py +2 -2
- strawberry/http/__init__.py +4 -9
- strawberry/http/async_base_view.py +6 -82
- strawberry/litestar/controller.py +1 -1
- strawberry/printer/printer.py +9 -9
- strawberry/quart/views.py +1 -1
- strawberry/relay/exceptions.py +3 -2
- strawberry/relay/fields.py +7 -7
- strawberry/relay/types.py +31 -28
- strawberry/sanic/utils.py +2 -4
- strawberry/sanic/views.py +1 -1
- strawberry/schema/config.py +0 -1
- strawberry/schema/schema.py +23 -54
- strawberry/static/graphiql.html +5 -5
- strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py +1 -1
- strawberry/subscriptions/protocols/graphql_ws/handlers.py +1 -1
- strawberry/types/arguments.py +5 -4
- strawberry/types/auto.py +1 -1
- strawberry/types/field.py +1 -1
- strawberry/types/fields/resolver.py +1 -1
- strawberry/types/lazy_type.py +1 -1
- strawberry/types/type_resolver.py +1 -1
- strawberry/types/union.py +1 -1
- strawberry/utils/aio.py +20 -1
- strawberry/utils/operation.py +1 -1
- strawberry/utils/typing.py +5 -5
- {strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/METADATA +1 -1
- {strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/RECORD +50 -52
- strawberry/schema/_graphql_core.py +0 -46
- strawberry/streamable.py +0 -36
- {strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/entry_points.txt +0 -0
strawberry/types/union.py
CHANGED
@@ -93,7 +93,7 @@ class StrawberryUnion(StrawberryType):
|
|
93
93
|
@property
|
94
94
|
def types(self) -> tuple[StrawberryType, ...]:
|
95
95
|
return tuple(
|
96
|
-
cast(StrawberryType, annotation.resolve())
|
96
|
+
cast("StrawberryType", annotation.resolve())
|
97
97
|
for annotation in self.type_annotations
|
98
98
|
)
|
99
99
|
|
strawberry/utils/aio.py
CHANGED
@@ -1,17 +1,34 @@
|
|
1
1
|
import sys
|
2
2
|
from collections.abc import AsyncGenerator, AsyncIterable, AsyncIterator, Awaitable
|
3
|
+
from contextlib import asynccontextmanager, suppress
|
3
4
|
from typing import (
|
4
5
|
Any,
|
5
6
|
Callable,
|
6
7
|
Optional,
|
7
8
|
TypeVar,
|
8
9
|
Union,
|
10
|
+
cast,
|
9
11
|
)
|
10
12
|
|
11
13
|
_T = TypeVar("_T")
|
12
14
|
_R = TypeVar("_R")
|
13
15
|
|
14
16
|
|
17
|
+
@asynccontextmanager
|
18
|
+
async def aclosing(thing: _T) -> AsyncGenerator[_T, None]:
|
19
|
+
"""Ensure that an async generator is closed properly.
|
20
|
+
|
21
|
+
Port from the stdlib contextlib.asynccontextmanager. Can be removed
|
22
|
+
and replaced with the stdlib version when we drop support for Python
|
23
|
+
versions before 3.10.
|
24
|
+
"""
|
25
|
+
try:
|
26
|
+
yield thing
|
27
|
+
finally:
|
28
|
+
with suppress(Exception):
|
29
|
+
await cast("AsyncGenerator", thing).aclose()
|
30
|
+
|
31
|
+
|
15
32
|
async def aenumerate(
|
16
33
|
iterable: Union[AsyncIterator[_T], AsyncIterable[_T]],
|
17
34
|
) -> AsyncIterator[tuple[int, _T]]:
|
@@ -42,11 +59,13 @@ async def aislice(
|
|
42
59
|
except StopIteration:
|
43
60
|
return
|
44
61
|
|
62
|
+
i = 0
|
45
63
|
try:
|
46
|
-
async for
|
64
|
+
async for element in aiterable:
|
47
65
|
if i == nexti:
|
48
66
|
yield element
|
49
67
|
nexti = next(it)
|
68
|
+
i += 1
|
50
69
|
except StopIteration:
|
51
70
|
return
|
52
71
|
|
strawberry/utils/operation.py
CHANGED
strawberry/utils/typing.py
CHANGED
@@ -256,11 +256,11 @@ def _get_namespace_from_ast(
|
|
256
256
|
and expr.value.id == "Union"
|
257
257
|
):
|
258
258
|
if hasattr(ast, "Index") and isinstance(expr.slice, ast.Index):
|
259
|
-
expr_slice = cast(Any, expr.slice).value
|
259
|
+
expr_slice = cast("Any", expr.slice).value
|
260
260
|
else:
|
261
261
|
expr_slice = expr.slice
|
262
262
|
|
263
|
-
for elt in cast(ast.Tuple, expr_slice).elts:
|
263
|
+
for elt in cast("ast.Tuple", expr_slice).elts:
|
264
264
|
extra.update(_get_namespace_from_ast(elt, globalns, localns))
|
265
265
|
elif (
|
266
266
|
isinstance(expr, ast.Subscript)
|
@@ -274,12 +274,12 @@ def _get_namespace_from_ast(
|
|
274
274
|
and expr.value.id == "Annotated"
|
275
275
|
):
|
276
276
|
if hasattr(ast, "Index") and isinstance(expr.slice, ast.Index):
|
277
|
-
expr_slice = cast(Any, expr.slice).value
|
277
|
+
expr_slice = cast("Any", expr.slice).value
|
278
278
|
else:
|
279
279
|
expr_slice = expr.slice
|
280
280
|
|
281
281
|
args: list[str] = []
|
282
|
-
for elt in cast(ast.Tuple, expr_slice).elts:
|
282
|
+
for elt in cast("ast.Tuple", expr_slice).elts:
|
283
283
|
extra.update(_get_namespace_from_ast(elt, globalns, localns))
|
284
284
|
args.append(ast.unparse(elt))
|
285
285
|
|
@@ -311,7 +311,7 @@ def eval_type(
|
|
311
311
|
globalns = globalns or {}
|
312
312
|
# If this is not a string, maybe its args are (e.g. list["Foo"])
|
313
313
|
if isinstance(type_, ForwardRef):
|
314
|
-
ast_obj = cast(ast.Expr, ast.parse(type_.__forward_arg__).body[0])
|
314
|
+
ast_obj = cast("ast.Expr", ast.parse(type_.__forward_arg__).body[0])
|
315
315
|
|
316
316
|
# For Python 3.10+, we can use the built-in _eval_type function directly.
|
317
317
|
# It will handle "|" notations properly
|
{strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/RECORD
RENAMED
@@ -1,26 +1,26 @@
|
|
1
|
-
strawberry/__init__.py,sha256=
|
1
|
+
strawberry/__init__.py,sha256=VcqNwegcJS_YhCOrZyveD_wBcd-hh8KKrXcIlTc7knE,1429
|
2
2
|
strawberry/__main__.py,sha256=3U77Eu21mJ-LY27RG-JEnpbh6Z63wGOom4i-EoLtUcY,59
|
3
3
|
strawberry/aiohttp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
strawberry/aiohttp/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
5
5
|
strawberry/aiohttp/test/client.py,sha256=8FKZTnvawxYpgEICOri-34O3wHRHLhRpjH_Ktp2EupQ,1801
|
6
|
-
strawberry/aiohttp/views.py,sha256=
|
7
|
-
strawberry/annotation.py,sha256=
|
8
|
-
strawberry/asgi/__init__.py,sha256=
|
6
|
+
strawberry/aiohttp/views.py,sha256=AQVBbZTBa127TbQRwoBelTHrVdZnJeGdMYcTfNmoaSc,7887
|
7
|
+
strawberry/annotation.py,sha256=1gaSo9XivkXwWjpEtsM4h5GLn9XGmPYZbxmLCXyh3dA,13116
|
8
|
+
strawberry/asgi/__init__.py,sha256=psdKl_52LGkxKKbzZlmwNGZ9jz2FLyLSC7fUhys4FqY,8169
|
9
9
|
strawberry/asgi/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
10
10
|
strawberry/asgi/test/client.py,sha256=kp2O5znHWuAB5VVYO8p4XPSTEDDXBSjNz5WHqW0r6GM,1473
|
11
11
|
strawberry/chalice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
strawberry/chalice/views.py,sha256
|
12
|
+
strawberry/chalice/views.py,sha256=mq2ILQrT9n9x13S8DCag1yInIXSShJU6GVMOCCeDlZ4,4758
|
13
13
|
strawberry/channels/__init__.py,sha256=AVmEwhzGHcTycMCnZYcZFFqZV8tKw9FJN4YXws-vWFA,433
|
14
14
|
strawberry/channels/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
strawberry/channels/handlers/base.py,sha256=3mSvT2HMlOoWr0Y_8y1wwSmvCmB8osy2pEK1Kc5zJ5M,7841
|
16
|
-
strawberry/channels/handlers/http_handler.py,sha256=
|
16
|
+
strawberry/channels/handlers/http_handler.py,sha256=zDwMVIjAiMVwsXOwq4Iy8IqwUAO8FNba3OPk76uWIGM,11647
|
17
17
|
strawberry/channels/handlers/ws_handler.py,sha256=yw9HqwReLGGLcLcK_e4gDaQMua31_Ds7JGwuSD9REZQ,6169
|
18
18
|
strawberry/channels/router.py,sha256=DKIbl4zuRBhfvViUVpyu0Rf_WRT41E6uZC-Yic9Ltvo,2024
|
19
19
|
strawberry/channels/testing.py,sha256=dc9mvSm9YdNOUgQk5ou5K4iE2h6TP5quKnk4Xdtn-IY,6558
|
20
20
|
strawberry/cli/__init__.py,sha256=ibaAZsZEk76j9eK1zcbsCN9It-pd0rneCuEGPzhxJWA,647
|
21
21
|
strawberry/cli/app.py,sha256=tTMBV1pdWqMcwjWO2yn-8oLDhMhfJvUzyQtWs75LWJ0,54
|
22
22
|
strawberry/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
strawberry/cli/commands/codegen.py,sha256=
|
23
|
+
strawberry/cli/commands/codegen.py,sha256=WbX8uqF-dpQk1QjQm3H4AvNSZ4lIUOTSPghii3attj8,3812
|
24
24
|
strawberry/cli/commands/export_schema.py,sha256=8XBqbejk0kT2fHky74DzW2TnE8APNMs0cKtatEjErUA,1024
|
25
25
|
strawberry/cli/commands/schema_codegen.py,sha256=G6eV08a51sjVxCm3jn75oPn9hC8YarKiAKOY5bpTuKU,749
|
26
26
|
strawberry/cli/commands/server.py,sha256=qj5wn22HvyJDzwnWzduIWRnS912XvD7GRhPGJkbLaz4,2217
|
@@ -37,7 +37,7 @@ strawberry/codegen/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
37
37
|
strawberry/codegen/plugins/print_operation.py,sha256=PxNPw9gXtqC_upIhgM9I6pmb66g523VMcIaKgLDMuOc,6799
|
38
38
|
strawberry/codegen/plugins/python.py,sha256=GgwxTGd16LPKxGuZBohJYWsarKjWfZY1-aGIA71m9MU,6903
|
39
39
|
strawberry/codegen/plugins/typescript.py,sha256=LFEK2ZLz4tUukkwZvUTXhsi_cVca3ybsLaatsW5JA5g,3865
|
40
|
-
strawberry/codegen/query_codegen.py,sha256=
|
40
|
+
strawberry/codegen/query_codegen.py,sha256=F5z-6qK5KcagagBcZvnjx6iIvdJol17DsBQt7TqhCH4,30539
|
41
41
|
strawberry/codegen/types.py,sha256=K5sjzNWDefOzdGtPumXyLuhnlEtd0zZXdPkF15lejk0,4181
|
42
42
|
strawberry/codemods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
43
|
strawberry/codemods/annotated_unions.py,sha256=T0KqJEmoOdOXVCOHI1G6ECvEVL2tzIRBenysrz3EhPQ,5988
|
@@ -49,13 +49,13 @@ strawberry/django/apps.py,sha256=ZWw3Mzv1Cgy0T9xT8Jr2_dkCTZjT5WQABb34iqnu5pc,135
|
|
49
49
|
strawberry/django/context.py,sha256=XL85jDGAVnb2pwgm5uRUvIXwlGia3i-8ZVfKihf0T24,655
|
50
50
|
strawberry/django/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
51
51
|
strawberry/django/test/client.py,sha256=5sAZhCyNiydnQtauI_7H_TRnPfHV3V5d-FKxxDxvTAs,620
|
52
|
-
strawberry/django/views.py,sha256=
|
52
|
+
strawberry/django/views.py,sha256=SiR2fxP42o0IP_Ti8NI2KNlKo0OUwXbEYcJdTzeoK_Q,9686
|
53
53
|
strawberry/exceptions/__init__.py,sha256=3bo6LehH3CnO3BGol073FhI6eRmV2Mf6OBjf28v6gwY,6515
|
54
54
|
strawberry/exceptions/conflicting_arguments.py,sha256=FJ5ZlZ_C9O7XS0H9hB0KGRRix0mcB4P6WwIccTJeh-g,1581
|
55
55
|
strawberry/exceptions/duplicated_type_name.py,sha256=Yc8UKO_pTtuXZmkEWp1onBdQitkMSMrfvWfeauLQ-ZI,2204
|
56
56
|
strawberry/exceptions/exception.py,sha256=a_MrBuZtQJD2Zd3pzdNpfuXdJPa6pNX3dz3NpjDSha8,3445
|
57
57
|
strawberry/exceptions/exception_source.py,sha256=Krr9KprJLMuiDBYRzRYULvLIuSjd8gIaiXmPoPCHEDo,404
|
58
|
-
strawberry/exceptions/handler.py,sha256=
|
58
|
+
strawberry/exceptions/handler.py,sha256=dY-zaaEcx4pCg5UIKe5BkjSvqk-1D3WxCdh1FtP0eeM,2685
|
59
59
|
strawberry/exceptions/invalid_argument_type.py,sha256=xu239AOYV0zKt4B6y3f4yZfcIJfB5qCcORWJBM9XPQw,2213
|
60
60
|
strawberry/exceptions/invalid_union_type.py,sha256=zKxDsagrs4_4ATxSHuPBHY6eQO45S3G1v7b09qQZZ4g,3610
|
61
61
|
strawberry/exceptions/missing_arguments_annotations.py,sha256=-WvTDW75Q2EYFrY3qVZJdbSpAk3UNWkXOnFRDgCzVOk,2007
|
@@ -73,20 +73,20 @@ strawberry/exceptions/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
73
73
|
strawberry/exceptions/utils/source_finder.py,sha256=kqSjCGIlnkD0DuCBYElqConp9wAvAyQ8kIHKgnmupjY,20123
|
74
74
|
strawberry/experimental/__init__.py,sha256=2HP5XtxL8ZKsPp4EDRAbMCqiP7p2V4Cca278JUGxnt0,102
|
75
75
|
strawberry/experimental/pydantic/__init__.py,sha256=UpO8wHNXGpoCYp34YStViInO1tsrGsMyhTVubTpJY7Y,255
|
76
|
-
strawberry/experimental/pydantic/_compat.py,sha256=
|
77
|
-
strawberry/experimental/pydantic/conversion.py,sha256=
|
76
|
+
strawberry/experimental/pydantic/_compat.py,sha256=CUc7SmGA-viYoBgD4L8X483yTGyDKaKMjX3WYWkiohg,9710
|
77
|
+
strawberry/experimental/pydantic/conversion.py,sha256=LBkR3CukdZx9LLvmDyK75YhoOrl0AlF3UD7x8HYr7us,4226
|
78
78
|
strawberry/experimental/pydantic/conversion_types.py,sha256=jf7PR5Q7hgo4J_AuxBK-BVj-8MC6vIg1k1pUfGfGTL8,925
|
79
|
-
strawberry/experimental/pydantic/error_type.py,sha256=
|
79
|
+
strawberry/experimental/pydantic/error_type.py,sha256=RdmiUY4V0baXCAk80ST-XtCiZbndZaaUSEajQplDAzw,4557
|
80
80
|
strawberry/experimental/pydantic/exceptions.py,sha256=pDMPL94ojuSGHxk8H8mI2pfWReG8BhqZ5T2eSxfOi9w,1486
|
81
81
|
strawberry/experimental/pydantic/fields.py,sha256=NcB38JYk29fPwJWtoHkIvwTfqD2Ekf7fJ57GjvvK6mQ,2265
|
82
|
-
strawberry/experimental/pydantic/object_type.py,sha256=
|
83
|
-
strawberry/experimental/pydantic/utils.py,sha256=
|
82
|
+
strawberry/experimental/pydantic/object_type.py,sha256=lcQgmWLulegTlGWmj_9GhPv1d2L_DdPpimVgMEr9aT0,12897
|
83
|
+
strawberry/experimental/pydantic/utils.py,sha256=URSzmcK2KzNGsLv4RyFdFfJnr-ARNLkkM0D4CjijVQU,4035
|
84
84
|
strawberry/ext/LICENSE,sha256=_oY0TZg0b_sW0--0T44aMTpy2e2zF1Kiyn8E1qDiivo,1249
|
85
85
|
strawberry/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
strawberry/ext/dataclasses/LICENSE,sha256=WZgm35K_3NJwLqxpEHJJi7CWxVrwTumEz5D3Dtd7WnA,13925
|
87
87
|
strawberry/ext/dataclasses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
88
|
strawberry/ext/dataclasses/dataclasses.py,sha256=bTW8nRwflW7_JtGhzXiKhe9Kajha_fgCfR0jVKrCzBw,2287
|
89
|
-
strawberry/ext/mypy_plugin.py,sha256=
|
89
|
+
strawberry/ext/mypy_plugin.py,sha256=KqpEWUnQftmmlC0CtK33H1FMR7P-WdI-F9Evnc60Mm0,20458
|
90
90
|
strawberry/extensions/__init__.py,sha256=5U5A4HEXyJHT74MP6j_zx7Mom6S7ooklK-c9xA-kdHQ,1224
|
91
91
|
strawberry/extensions/add_validation_rules.py,sha256=YwC_27jUpQ6DWcCB1RsuE1JD8R5rV7LAu5fVjdLchYs,1358
|
92
92
|
strawberry/extensions/base_extension.py,sha256=ihsbUrhYt-x4X1j5a34FASmNF661Xev-3w4Qc5gUbHw,2351
|
@@ -104,13 +104,13 @@ strawberry/extensions/runner.py,sha256=LCUSzKUrwTYhoIr1nS8uFDN15_YEQ_3BFK1zpPfOf
|
|
104
104
|
strawberry/extensions/tracing/__init__.py,sha256=igoDJBlfh7vGhytJ5njx1qQzpxZOUmdfIaH4j5Kmt3E,1112
|
105
105
|
strawberry/extensions/tracing/apollo.py,sha256=GONBVew2K4j3clAHrVYfIMDQTLAwFtag-uBaYI2yqfk,5900
|
106
106
|
strawberry/extensions/tracing/datadog.py,sha256=-5zVf5JSjujzNJQvpu7EANumhL1qeMET2ffjmaf8AU4,5800
|
107
|
-
strawberry/extensions/tracing/opentelemetry.py,sha256=
|
107
|
+
strawberry/extensions/tracing/opentelemetry.py,sha256=Bre5HkUwZwRawSvS8Zlix67g46AaR4_XWA49LArm6UI,7304
|
108
108
|
strawberry/extensions/tracing/utils.py,sha256=tXZNyqfct6YNSWi3GRj4GU1fKQGvSce8ZESfoVeys7U,654
|
109
109
|
strawberry/extensions/utils.py,sha256=sjhxItHzbDhqHtnR63WbE35qzHhTyf9NSffidet79Hc,995
|
110
110
|
strawberry/extensions/validation_cache.py,sha256=D4Jyj7WoUkgp_UH6bo9ytRZbPwJnencbti5Z1GszGhM,1433
|
111
111
|
strawberry/fastapi/__init__.py,sha256=p5qg9AlkYjNOWKcT4uRiebIpR6pIb1HqDMiDfF5O3tg,147
|
112
112
|
strawberry/fastapi/context.py,sha256=O_cDNppfUJJecM0ZU_RJ-dhdF0o1x39JfYvYg-7uob4,684
|
113
|
-
strawberry/fastapi/router.py,sha256=
|
113
|
+
strawberry/fastapi/router.py,sha256=cfRGP1SL_QaSNjCk3Zi7YDQte1EsIljvqTDB1J0O4fQ,12018
|
114
114
|
strawberry/federation/__init__.py,sha256=Pw01N0rG9o0NaUxXLMNGeW5oLENeWVx_d8Kuef1ES4s,549
|
115
115
|
strawberry/federation/argument.py,sha256=rs71S1utiNUd4XOLRa9KVtSMA3yqvKJnR_qdJqX6PPM,860
|
116
116
|
strawberry/federation/enum.py,sha256=MdtblT4Z8_-2L8gUdo0ROnw3aY8RAAtTvyfHbCBBPrA,3033
|
@@ -118,7 +118,7 @@ strawberry/federation/field.py,sha256=pcFgl33xgJcunb6TxfOPuzsAQTGbbzjKi41SUUSV3w
|
|
118
118
|
strawberry/federation/mutation.py,sha256=5t2E419m4K2W6LoWEOzWgMdL2J0PwHnsffYkpChqqDQ,67
|
119
119
|
strawberry/federation/object_type.py,sha256=tuUn_YqtOcvivVSHrXESSFr2kae79xW_SLUV3oNINdE,9381
|
120
120
|
strawberry/federation/scalar.py,sha256=sOVmhYnogew6hP6-7PQMMYQHHWE-BEyo52BT7_IYGiw,4649
|
121
|
-
strawberry/federation/schema.py,sha256=
|
121
|
+
strawberry/federation/schema.py,sha256=r-_SnThdDbeQDst9iUnwFCA-CoeF7KzQw_C4-yI3QeA,13252
|
122
122
|
strawberry/federation/schema_directive.py,sha256=aa91b3WN0vdqBrkmArx_TDAxwXXu9fKcdmxQhtiumwg,1769
|
123
123
|
strawberry/federation/schema_directives.py,sha256=81QiHIbN4xNOUs2Ttd6WE2oGRsBVAG1-_Sw-eGwaq94,6394
|
124
124
|
strawberry/federation/types.py,sha256=cqyx_-GJ5d__hac7bip_dQKm9NGR88D0N1JVnde0Ji8,360
|
@@ -129,9 +129,9 @@ strawberry/file_uploads/__init__.py,sha256=v2-6FGBqnTnMPSUTFOiXpIutDMl-ga0PFtw5t
|
|
129
129
|
strawberry/file_uploads/scalars.py,sha256=NRDeB7j8aotqIkz9r62ISTf4DrxQxEZYUuHsX5K16aU,161
|
130
130
|
strawberry/file_uploads/utils.py,sha256=-c6TbqUI-Dkb96hWCrZabh6TL2OabBuQNkCarOqgDm4,1181
|
131
131
|
strawberry/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
132
|
-
strawberry/flask/views.py,sha256=
|
133
|
-
strawberry/http/__init__.py,sha256=
|
134
|
-
strawberry/http/async_base_view.py,sha256=
|
132
|
+
strawberry/flask/views.py,sha256=MCvAsNgTZLU8RvTYKWfnLU2w7Wv1ZZpxW9W3TyTZuPY,6355
|
133
|
+
strawberry/http/__init__.py,sha256=BV_JpUwNongW38UzFstM72hDXNUjSxdJm_M96pDFU1c,1122
|
134
|
+
strawberry/http/async_base_view.py,sha256=9micSD_KpoB8oBHAPlcTpt44bVABDYScvyfHa3NP4rE,16352
|
135
135
|
strawberry/http/base.py,sha256=Lz-u5SWg2uQp3l5GMKZDPQuJOR42LXHgjV1PZHwiapE,2373
|
136
136
|
strawberry/http/exceptions.py,sha256=9E2dreS1crRoJVUEPuHyx23NcDELDHNzkAOa-rGv-8I,348
|
137
137
|
strawberry/http/ides.py,sha256=WjU0nsMDgr3Bd1ebWkUEkO2d1hk0dI16mLqXyCHqklA,613
|
@@ -141,34 +141,33 @@ strawberry/http/temporal_response.py,sha256=HTt65g-YxqlPGxjqvH5bzGoU1b3CctVR-9cm
|
|
141
141
|
strawberry/http/types.py,sha256=H0wGOdCO-5tNKZM_6cAtNRwZAjoEXnAC5N0Q7b70AtU,398
|
142
142
|
strawberry/http/typevars.py,sha256=Uu6NkKe3h7o29ZWwldq6sJy4ioSSeXODTCDRvY2hUpE,489
|
143
143
|
strawberry/litestar/__init__.py,sha256=zsXzg-mglCGUVO9iNXLm-yadoDSCK7k-zuyRqyvAh1w,237
|
144
|
-
strawberry/litestar/controller.py,sha256=
|
144
|
+
strawberry/litestar/controller.py,sha256=DSbjl7QGCY_TX77EomqDvtH8-ZK6wfhL81IUEFa-JJs,14124
|
145
145
|
strawberry/parent.py,sha256=wViSVYl5ADuyy2EGaS98by_iT1ep9xTP2od8NB_EIuw,742
|
146
146
|
strawberry/permission.py,sha256=dSRJMjSCmTlXfvfC24kCSrAk0txTjYKTJ5ZVU5IW91Y,7537
|
147
147
|
strawberry/printer/__init__.py,sha256=DmepjmgtkdF5RxK_7yC6qUyRWn56U-9qeZMbkztYB9w,62
|
148
148
|
strawberry/printer/ast_from_value.py,sha256=Tkme60qlykbN2m3dNPNMOe65X-wj6EmcDQwgQv7gUkc,4987
|
149
|
-
strawberry/printer/printer.py,sha256=
|
149
|
+
strawberry/printer/printer.py,sha256=49u3QwttTGvh13HXZtbTnkZzBwL1k5SLf8rXQLiTpl4,18814
|
150
150
|
strawberry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
151
|
strawberry/quart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
|
-
strawberry/quart/views.py,sha256=
|
152
|
+
strawberry/quart/views.py,sha256=Hjm93A9j9fy--DQVhsPQ_PakqYtajyWeuH7wUnSLYoA,4449
|
153
153
|
strawberry/relay/__init__.py,sha256=Vi4btvA_g6Cj9Tk_F9GCSegapIf2WqkOWV8y3P0cTCs,553
|
154
|
-
strawberry/relay/exceptions.py,sha256=
|
155
|
-
strawberry/relay/fields.py,sha256=
|
156
|
-
strawberry/relay/types.py,sha256=
|
154
|
+
strawberry/relay/exceptions.py,sha256=Za0iXLBGZtd1HkesGm4xTr3QOeuyiCAe1hiCCQ2HHvE,4036
|
155
|
+
strawberry/relay/fields.py,sha256=wIwBTXsDimG6incMglEn7Gr7CO8H8AA25yhM8MT8I-0,18100
|
156
|
+
strawberry/relay/types.py,sha256=1i1tJFLlD3ofKRf9YCoGoGh70v1kUrvlXqo6rdmulAs,30353
|
157
157
|
strawberry/relay/utils.py,sha256=OqeeTy_3TFMjmERnCNleUpW3bFf-yuQDzra8l5PNlyY,5817
|
158
158
|
strawberry/resolvers.py,sha256=Vdidc3YFc4-olSQZD_xQ1icyAFbyzqs_8I3eSpMFlA4,260
|
159
159
|
strawberry/sanic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
160
|
strawberry/sanic/context.py,sha256=qN7I9K_qIqgdbG_FbDl8XMb9aM1PyjIxSo8IAg2Uq8o,844
|
161
|
-
strawberry/sanic/utils.py,sha256=
|
162
|
-
strawberry/sanic/views.py,sha256
|
161
|
+
strawberry/sanic/utils.py,sha256=DiHWMfaulaP2QSi79NwI847xkUiBybvLdr0VSbKAwNQ,1044
|
162
|
+
strawberry/sanic/views.py,sha256=F5ZrKt-R3135evKLfhQuPd1isOexI0Lrzevm_6Te4Eg,7069
|
163
163
|
strawberry/scalars.py,sha256=FcFTbu-yKbBfPCuAfXNa6DbTbEzF3eiQHs5nlt6GJdM,2234
|
164
164
|
strawberry/schema/__init__.py,sha256=u1QCyDVQExUVDA20kyosKPz3TS5HMCN2NrXclhiFAL4,92
|
165
|
-
strawberry/schema/_graphql_core.py,sha256=XHsNZLkCyiH55jANK4XJIjq6VCMhN_MgZBEFWEYj5Jc,1237
|
166
165
|
strawberry/schema/base.py,sha256=q5UAw6do4Ele5Cf8dNAouiPjNmZoCBNFqh5Vl05caCI,3864
|
167
166
|
strawberry/schema/compat.py,sha256=9qJ0lhYJeaN43ayFgVz708ZMvedBhofiTSw9kpFqmjU,1830
|
168
|
-
strawberry/schema/config.py,sha256=
|
167
|
+
strawberry/schema/config.py,sha256=6BpCbNNCuekGgiKEPt2mliMqLH_wIjJmSW0tLbnJwk4,924
|
169
168
|
strawberry/schema/exceptions.py,sha256=rqVNb_oYrKM0dHPgvAemqCG6Um282LPPu4zwQ5cZqs4,584
|
170
169
|
strawberry/schema/name_converter.py,sha256=1rrpch-wBidlWfZ7hVouvIIhJpdxWfB5tWnO6PqYug8,6544
|
171
|
-
strawberry/schema/schema.py,sha256=
|
170
|
+
strawberry/schema/schema.py,sha256=qthZttzb9a0GEcwh7trqBKHmuPXOgQlnceqiCRPj4_s,34566
|
172
171
|
strawberry/schema/schema_converter.py,sha256=-_QZCcmHWIEjRPqEChtPMPbFtgz6YmLn8V6KXvZJMOk,37192
|
173
172
|
strawberry/schema/types/__init__.py,sha256=oHO3COWhL3L1KLYCJNY1XFf5xt2GGtHiMC-UaYbFfnA,68
|
174
173
|
strawberry/schema/types/base_scalars.py,sha256=JRUq0WjEkR9dFewstZnqnZKp0uOEipo4UXNF5dzRf4M,1971
|
@@ -180,16 +179,15 @@ strawberry/schema_codegen/__init__.py,sha256=mN4Qmu5Iakht6nHpRpt9hCs8e--oTPlVtDJ
|
|
180
179
|
strawberry/schema_directive.py,sha256=CbjdX54EIeWGkJu4SgiLR8mph5_8wyNsgJk2oLoQK_0,2023
|
181
180
|
strawberry/schema_directives.py,sha256=KGKFWCODjm1Ah9qNV_bBwbic7Mld4qLWnWQkev-PG8A,175
|
182
181
|
strawberry/static/apollo-sandbox.html,sha256=2XzkbE0dqsFHqehE-jul9_J9TFOpwA6Ylrlo0Kdx_9w,973
|
183
|
-
strawberry/static/graphiql.html,sha256=
|
182
|
+
strawberry/static/graphiql.html,sha256=BkiqZlC63f1sHBDs_UpMzcibcNrHKh7K41Sp23yttfo,4257
|
184
183
|
strawberry/static/pathfinder.html,sha256=0DPx9AmJ2C_sJstFXnWOz9k5tVQHeHaK7qdVY4lAlmk,1547
|
185
|
-
strawberry/streamable.py,sha256=ylfMt5lfX7RRKGi86wWokvIgYQk5jZCvQVc3shK0epk,645
|
186
184
|
strawberry/subscriptions/__init__.py,sha256=1VGmiCzFepqRFyCikagkUoHHdoTG3XYlFu9GafoQMws,170
|
187
185
|
strawberry/subscriptions/protocols/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
186
|
strawberry/subscriptions/protocols/graphql_transport_ws/__init__.py,sha256=wN6dkMu6WiaIZTE19PGoN9xXpIN_RdDE_q7F7ZgjCxk,138
|
189
|
-
strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py,sha256=
|
187
|
+
strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py,sha256=PFJDEYOXqqROkczVKZ8k4yWJbib1cE6ySx9GIR5hAVI,15079
|
190
188
|
strawberry/subscriptions/protocols/graphql_transport_ws/types.py,sha256=N9r2mXg5jmmjYoZV5rWf3lAzgylCOUrbKGmClXCoOso,2169
|
191
189
|
strawberry/subscriptions/protocols/graphql_ws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
-
strawberry/subscriptions/protocols/graphql_ws/handlers.py,sha256=
|
190
|
+
strawberry/subscriptions/protocols/graphql_ws/handlers.py,sha256=h0E09Ktn1Ag9RWh4oALSfcIGYv8PdvPqaKAeriveYAY,8303
|
193
191
|
strawberry/subscriptions/protocols/graphql_ws/types.py,sha256=Uumiz-1O5qQnx-ERBaQtaf7db5yx-V9LMypOn9oGKwM,2003
|
194
192
|
strawberry/test/__init__.py,sha256=lKVbKJDBnrYSPYHIKrg54UpaZcSoL93Z01zOpA1IzZM,115
|
195
193
|
strawberry/test/client.py,sha256=ILAttb6A3jplH5wJNMeyyT1u_Q8KnollfpYLP_BVZR4,6438
|
@@ -197,28 +195,28 @@ strawberry/tools/__init__.py,sha256=pdGpZx8wpq03VfUZJyF9JtYxZhGqzzxCiipsalWxJX4,
|
|
197
195
|
strawberry/tools/create_type.py,sha256=--DgfZOmXJBKGcVxehNISyvpw1HzwFvRtUUPc0634MA,2056
|
198
196
|
strawberry/tools/merge_types.py,sha256=hUMRRNM28FyPp70jRA3d4svv9WoEBjaNpihBt3DaY0I,1023
|
199
197
|
strawberry/types/__init__.py,sha256=baWEdDkkmCcITOhkg2hNUOenrNV1OYdxGE5qgvIRwwU,351
|
200
|
-
strawberry/types/arguments.py,sha256=
|
201
|
-
strawberry/types/auto.py,sha256=
|
198
|
+
strawberry/types/arguments.py,sha256=Ny4meiKYtcXpAV0rFKWJXOJK5iQB-zs-23n0w8S8zVc,9458
|
199
|
+
strawberry/types/auto.py,sha256=WZ2cQAI8nREUigBzpzFqIKGjJ_C2VqpAPNe8vPjTciM,3007
|
202
200
|
strawberry/types/base.py,sha256=rx7J9dGUCUCap0lgb5Yyb_WXnB95FZEY6gQcYasiI9w,14907
|
203
201
|
strawberry/types/cast.py,sha256=fx86MkLW77GIximBAwUk5vZxSGwDqUA6XicXvz8EXwQ,916
|
204
202
|
strawberry/types/enum.py,sha256=gy4gZvhprZqXJrjeBtokW-0CUcOl6BUOaI2apOSn2mc,5974
|
205
203
|
strawberry/types/execution.py,sha256=Ylc0lH0nyHyQW509mVqBh2sIN5qpf4cJtt8QhVmWGgI,3749
|
206
|
-
strawberry/types/field.py,sha256=
|
204
|
+
strawberry/types/field.py,sha256=vxb7JvkHfRmDCYsjhDmVnO2lMbtSOteQm3jQUeSFu6g,21605
|
207
205
|
strawberry/types/fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
208
|
-
strawberry/types/fields/resolver.py,sha256=
|
206
|
+
strawberry/types/fields/resolver.py,sha256=iYYVUVpm-JM3AFQHuQFeOooftiQWFw3kg64pqSNIe_0,14186
|
209
207
|
strawberry/types/graphql.py,sha256=gXKzawwKiow7hvoJhq5ApNJOMUCnKmvTiHaKY5CK1Lw,867
|
210
208
|
strawberry/types/info.py,sha256=bPP7XTQQScmskJcmVv36iqLAWpdGmF2nhYjI1pJ-csI,4709
|
211
|
-
strawberry/types/lazy_type.py,sha256=
|
209
|
+
strawberry/types/lazy_type.py,sha256=dlP9VcMjZc9sdgriiQGzOZa0TToB6Ee7zpIP8h7TLC0,5079
|
212
210
|
strawberry/types/mutation.py,sha256=cg-_O2WWnZ-GSwOIv0toSdxlGeY2lhBBxZ24AifJuSM,11978
|
213
211
|
strawberry/types/nodes.py,sha256=RwZB43OT9BS3Cqjgq4AazqOfyq_y0GD2ysC86EDBv5U,5134
|
214
212
|
strawberry/types/object_type.py,sha256=CW-detiYjGmk4kHJP-vUK9sBkBuDic4nswDub4zUyvc,15075
|
215
213
|
strawberry/types/private.py,sha256=DhJs50XVGtOXlxWZFkRpMxQ5_6oki0-x_WQsV1bGUxk,518
|
216
214
|
strawberry/types/scalar.py,sha256=CM24Ixg4DKxxI1C6hTNGYVitohJibs8BpGtntRZvMXw,6284
|
217
|
-
strawberry/types/type_resolver.py,sha256=
|
218
|
-
strawberry/types/union.py,sha256=
|
215
|
+
strawberry/types/type_resolver.py,sha256=fH2ZOK4dAGgu8AMPi-JAXe_kEAbvvw2MCYXqbpx-kTc,6529
|
216
|
+
strawberry/types/union.py,sha256=jlIQwIZdvvD78ybYEy0CB4P7xnr07rb3VuK0SfCUvPk,9962
|
219
217
|
strawberry/types/unset.py,sha256=7DVK-WWxVLo41agvavTvIbphE42BmY8UpGolXfasIvw,1682
|
220
218
|
strawberry/utils/__init__.py,sha256=wuuNvKjcMfE0l4lqrlC-cc0_SR4hV19gNBJ3Mcn7l3A,141
|
221
|
-
strawberry/utils/aio.py,sha256=
|
219
|
+
strawberry/utils/aio.py,sha256=Nry5jxFHvipGS1CwX5VvFS2YQ6_bp-_cewnI6v9A7-A,2226
|
222
220
|
strawberry/utils/await_maybe.py,sha256=YdjfuzjDVjph0VH0WkwvU4ezsjl_fELnGrLC1_bvb_U,449
|
223
221
|
strawberry/utils/dataclasses.py,sha256=1wvVq0vgvjrRSamJ3CBJpkLu1KVweTmw5JLXmagdGes,856
|
224
222
|
strawberry/utils/debug.py,sha256=eP-wyKSSt7YHHY_lJdSa2hDlrBPd72kDtmGdFZ0Kyyo,1440
|
@@ -227,11 +225,11 @@ strawberry/utils/graphql_lexer.py,sha256=JUVJrJ6Ax0t7m6-DTWFzf4cvXrC02VPmL1NS2zM
|
|
227
225
|
strawberry/utils/importer.py,sha256=NtTgNaNSW4TnlLo_S34nxXq14RxUAec-QlEZ0LON28M,629
|
228
226
|
strawberry/utils/inspect.py,sha256=-aFT65PkQ9KXo5w8Q2uveBJ8jEpi40sTqRipRQVdYR8,3406
|
229
227
|
strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,746
|
230
|
-
strawberry/utils/operation.py,sha256=
|
228
|
+
strawberry/utils/operation.py,sha256=s7ajvLg_q6v2mg47kEMQPjO_J-XluMKTCwo4d47mGvE,1195
|
231
229
|
strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
|
232
|
-
strawberry/utils/typing.py,sha256=
|
233
|
-
strawberry_graphql-0.263.
|
234
|
-
strawberry_graphql-0.263.
|
235
|
-
strawberry_graphql-0.263.
|
236
|
-
strawberry_graphql-0.263.
|
237
|
-
strawberry_graphql-0.263.
|
230
|
+
strawberry/utils/typing.py,sha256=Xmnhwvnw8RIQVIc5D5iI4_9qM4Thpk7tWx8xf-RW_So,13383
|
231
|
+
strawberry_graphql-0.263.2.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
232
|
+
strawberry_graphql-0.263.2.dist-info/METADATA,sha256=6hreUintx2Yjuv8bzNrCJy583fauDHONGS-4zAAau3c,7679
|
233
|
+
strawberry_graphql-0.263.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
234
|
+
strawberry_graphql-0.263.2.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
235
|
+
strawberry_graphql-0.263.2.dist-info/RECORD,,
|
@@ -1,46 +0,0 @@
|
|
1
|
-
from typing import Union
|
2
|
-
|
3
|
-
from graphql.execution import ExecutionContext as GraphQLExecutionContext
|
4
|
-
from graphql.execution import ExecutionResult as GraphQLExecutionResult
|
5
|
-
from graphql.execution import execute, subscribe
|
6
|
-
|
7
|
-
from strawberry.types import ExecutionResult
|
8
|
-
|
9
|
-
try:
|
10
|
-
from graphql import (
|
11
|
-
ExperimentalIncrementalExecutionResults as GraphQLIncrementalExecutionResults,
|
12
|
-
)
|
13
|
-
from graphql.execution import experimental_execute_incrementally
|
14
|
-
from graphql.type.directives import (
|
15
|
-
GraphQLDeferDirective,
|
16
|
-
GraphQLStreamDirective,
|
17
|
-
)
|
18
|
-
|
19
|
-
incremental_execution_directives = (
|
20
|
-
GraphQLDeferDirective,
|
21
|
-
GraphQLStreamDirective,
|
22
|
-
)
|
23
|
-
|
24
|
-
except ImportError:
|
25
|
-
GraphQLIncrementalExecutionResults = type(None)
|
26
|
-
|
27
|
-
incremental_execution_directives = []
|
28
|
-
experimental_execute_incrementally = None
|
29
|
-
|
30
|
-
|
31
|
-
# TODO: give this a better name, maybe also a better place
|
32
|
-
ResultType = Union[
|
33
|
-
GraphQLExecutionResult,
|
34
|
-
GraphQLIncrementalExecutionResults,
|
35
|
-
ExecutionResult,
|
36
|
-
]
|
37
|
-
|
38
|
-
__all__ = [
|
39
|
-
"GraphQLExecutionContext",
|
40
|
-
"GraphQLIncrementalExecutionResults",
|
41
|
-
"ResultType",
|
42
|
-
"execute",
|
43
|
-
"experimental_execute_incrementally",
|
44
|
-
"incremental_execution_directives",
|
45
|
-
"subscribe",
|
46
|
-
]
|
strawberry/streamable.py
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
from collections.abc import AsyncGenerator
|
2
|
-
from typing import Annotated, TypeVar
|
3
|
-
|
4
|
-
|
5
|
-
class StrawberryStreamable: ...
|
6
|
-
|
7
|
-
|
8
|
-
T = TypeVar("T")
|
9
|
-
|
10
|
-
Streamable = Annotated[AsyncGenerator[T, None], StrawberryStreamable()]
|
11
|
-
"""Represents a list that can be streamed using @stream.
|
12
|
-
|
13
|
-
Example:
|
14
|
-
|
15
|
-
```python
|
16
|
-
import strawberry
|
17
|
-
from dataclasses import dataclass
|
18
|
-
|
19
|
-
|
20
|
-
@strawberry.type
|
21
|
-
class Comment:
|
22
|
-
id: strawberry.ID
|
23
|
-
content: str
|
24
|
-
|
25
|
-
|
26
|
-
@strawberry.type
|
27
|
-
class Article:
|
28
|
-
@strawberry.field
|
29
|
-
@staticmethod
|
30
|
-
async def comments() -> strawberry.Streamable[Comment]:
|
31
|
-
for comment in fetch_comments():
|
32
|
-
yield comment
|
33
|
-
```
|
34
|
-
"""
|
35
|
-
|
36
|
-
__all__ = ["Streamable"]
|
{strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/LICENSE
RENAMED
File without changes
|
{strawberry_graphql-0.263.0.dev1743582446.dist-info → strawberry_graphql-0.263.2.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|