strawberry-graphql 0.277.1__py3-none-any.whl → 0.278.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 +5 -49
- strawberry/asgi/__init__.py +5 -38
- strawberry/chalice/views.py +7 -40
- strawberry/channels/handlers/http_handler.py +34 -14
- strawberry/channels/handlers/ws_handler.py +3 -1
- strawberry/django/views.py +7 -74
- strawberry/fastapi/router.py +11 -5
- strawberry/flask/views.py +7 -75
- strawberry/http/async_base_view.py +113 -62
- strawberry/http/base.py +19 -1
- strawberry/http/exceptions.py +5 -7
- strawberry/http/sync_base_view.py +110 -62
- strawberry/litestar/controller.py +4 -40
- strawberry/quart/views.py +6 -34
- strawberry/sanic/views.py +8 -44
- strawberry/schema/config.py +6 -1
- {strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/METADATA +2 -1
- {strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/RECORD +21 -21
- {strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/entry_points.txt +0 -0
strawberry/quart/views.py
CHANGED
@@ -3,25 +3,24 @@ import warnings
|
|
3
3
|
from collections.abc import AsyncGenerator, Mapping, Sequence
|
4
4
|
from datetime import timedelta
|
5
5
|
from json.decoder import JSONDecodeError
|
6
|
-
from typing import TYPE_CHECKING, Callable, ClassVar, Optional, Union
|
6
|
+
from typing import TYPE_CHECKING, Callable, ClassVar, Optional, Union
|
7
7
|
from typing_extensions import TypeGuard
|
8
8
|
|
9
|
+
from lia import HTTPException, QuartHTTPRequestAdapter
|
10
|
+
|
9
11
|
from quart import Request, Response, Websocket, request, websocket
|
10
12
|
from quart.ctx import has_websocket_context
|
11
13
|
from quart.views import View
|
12
14
|
from strawberry.http.async_base_view import (
|
13
15
|
AsyncBaseHTTPView,
|
14
|
-
AsyncHTTPRequestAdapter,
|
15
16
|
AsyncWebSocketAdapter,
|
16
17
|
)
|
17
18
|
from strawberry.http.exceptions import (
|
18
|
-
HTTPException,
|
19
19
|
NonJsonMessageReceived,
|
20
20
|
NonTextMessageReceived,
|
21
21
|
WebSocketDisconnected,
|
22
22
|
)
|
23
23
|
from strawberry.http.ides import GraphQL_IDE
|
24
|
-
from strawberry.http.types import FormData, HTTPMethod, QueryParams
|
25
24
|
from strawberry.http.typevars import Context, RootValue
|
26
25
|
from strawberry.subscriptions import GRAPHQL_TRANSPORT_WS_PROTOCOL, GRAPHQL_WS_PROTOCOL
|
27
26
|
|
@@ -31,35 +30,6 @@ if TYPE_CHECKING:
|
|
31
30
|
from strawberry.schema.base import BaseSchema
|
32
31
|
|
33
32
|
|
34
|
-
class QuartHTTPRequestAdapter(AsyncHTTPRequestAdapter):
|
35
|
-
def __init__(self, request: Request) -> None:
|
36
|
-
self.request = request
|
37
|
-
|
38
|
-
@property
|
39
|
-
def query_params(self) -> QueryParams:
|
40
|
-
return self.request.args.to_dict()
|
41
|
-
|
42
|
-
@property
|
43
|
-
def method(self) -> HTTPMethod:
|
44
|
-
return cast("HTTPMethod", self.request.method.upper())
|
45
|
-
|
46
|
-
@property
|
47
|
-
def content_type(self) -> Optional[str]:
|
48
|
-
return self.request.content_type
|
49
|
-
|
50
|
-
@property
|
51
|
-
def headers(self) -> Mapping[str, str]:
|
52
|
-
return self.request.headers # type: ignore
|
53
|
-
|
54
|
-
async def get_body(self) -> str:
|
55
|
-
return (await self.request.data).decode()
|
56
|
-
|
57
|
-
async def get_form_data(self) -> FormData:
|
58
|
-
files = await self.request.files
|
59
|
-
form = await self.request.form
|
60
|
-
return FormData(files=files, form=form)
|
61
|
-
|
62
|
-
|
63
33
|
class QuartWebSocketAdapter(AsyncWebSocketAdapter):
|
64
34
|
def __init__(
|
65
35
|
self, view: AsyncBaseHTTPView, request: Websocket, response: Response
|
@@ -149,7 +119,9 @@ class GraphQLView(
|
|
149
119
|
return Response(self.graphql_ide_html)
|
150
120
|
|
151
121
|
def create_response(
|
152
|
-
self,
|
122
|
+
self,
|
123
|
+
response_data: Union["GraphQLHTTPResponse", list["GraphQLHTTPResponse"]],
|
124
|
+
sub_response: Response,
|
153
125
|
) -> Response:
|
154
126
|
sub_response.set_data(self.encode_json(response_data))
|
155
127
|
|
strawberry/sanic/views.py
CHANGED
@@ -7,68 +7,30 @@ from typing import (
|
|
7
7
|
Any,
|
8
8
|
Callable,
|
9
9
|
Optional,
|
10
|
-
|
10
|
+
Union,
|
11
11
|
)
|
12
12
|
from typing_extensions import TypeGuard
|
13
13
|
|
14
|
+
from lia import HTTPException, SanicHTTPRequestAdapter
|
15
|
+
|
14
16
|
from sanic.request import Request
|
15
17
|
from sanic.response import HTTPResponse, html
|
16
18
|
from sanic.views import HTTPMethodView
|
17
|
-
from strawberry.http.async_base_view import AsyncBaseHTTPView
|
18
|
-
from strawberry.http.exceptions import HTTPException
|
19
|
+
from strawberry.http.async_base_view import AsyncBaseHTTPView
|
19
20
|
from strawberry.http.temporal_response import TemporalResponse
|
20
|
-
from strawberry.http.types import FormData, HTTPMethod, QueryParams
|
21
21
|
from strawberry.http.typevars import (
|
22
22
|
Context,
|
23
23
|
RootValue,
|
24
24
|
)
|
25
|
-
from strawberry.sanic.utils import convert_request_to_files_dict
|
26
25
|
|
27
26
|
if TYPE_CHECKING:
|
28
|
-
from collections.abc import AsyncGenerator
|
27
|
+
from collections.abc import AsyncGenerator
|
29
28
|
|
30
29
|
from strawberry.http import GraphQLHTTPResponse
|
31
30
|
from strawberry.http.ides import GraphQL_IDE
|
32
31
|
from strawberry.schema import BaseSchema
|
33
32
|
|
34
33
|
|
35
|
-
class SanicHTTPRequestAdapter(AsyncHTTPRequestAdapter):
|
36
|
-
def __init__(self, request: Request) -> None:
|
37
|
-
self.request = request
|
38
|
-
|
39
|
-
@property
|
40
|
-
def query_params(self) -> QueryParams:
|
41
|
-
# Just a heads up, Sanic's request.args uses urllib.parse.parse_qs
|
42
|
-
# to parse query string parameters. This returns a dictionary where
|
43
|
-
# the keys are the unique variable names and the values are lists
|
44
|
-
# of values for each variable name. To ensure consistency, we're
|
45
|
-
# enforcing the use of the first value in each list.
|
46
|
-
args = self.request.get_args(keep_blank_values=True)
|
47
|
-
return {k: args.get(k, None) for k in args}
|
48
|
-
|
49
|
-
@property
|
50
|
-
def method(self) -> HTTPMethod:
|
51
|
-
return cast("HTTPMethod", self.request.method.upper())
|
52
|
-
|
53
|
-
@property
|
54
|
-
def headers(self) -> Mapping[str, str]:
|
55
|
-
return self.request.headers
|
56
|
-
|
57
|
-
@property
|
58
|
-
def content_type(self) -> Optional[str]:
|
59
|
-
return self.request.content_type
|
60
|
-
|
61
|
-
async def get_body(self) -> str:
|
62
|
-
return self.request.body.decode()
|
63
|
-
|
64
|
-
async def get_form_data(self) -> FormData:
|
65
|
-
assert self.request.form is not None
|
66
|
-
|
67
|
-
files = convert_request_to_files_dict(self.request)
|
68
|
-
|
69
|
-
return FormData(form=self.request.form, files=files)
|
70
|
-
|
71
|
-
|
72
34
|
class GraphQLView(
|
73
35
|
AsyncBaseHTTPView[
|
74
36
|
Request,
|
@@ -158,7 +120,9 @@ class GraphQLView(
|
|
158
120
|
return TemporalResponse()
|
159
121
|
|
160
122
|
def create_response(
|
161
|
-
self,
|
123
|
+
self,
|
124
|
+
response_data: Union[GraphQLHTTPResponse, list[GraphQLHTTPResponse]],
|
125
|
+
sub_response: TemporalResponse,
|
162
126
|
) -> HTTPResponse:
|
163
127
|
status_code = sub_response.status_code
|
164
128
|
|
strawberry/schema/config.py
CHANGED
@@ -1,13 +1,17 @@
|
|
1
1
|
from __future__ import annotations
|
2
2
|
|
3
3
|
from dataclasses import InitVar, dataclass, field
|
4
|
-
from typing import Any, Callable
|
4
|
+
from typing import Any, Callable, Optional, TypedDict
|
5
5
|
|
6
6
|
from strawberry.types.info import Info
|
7
7
|
|
8
8
|
from .name_converter import NameConverter
|
9
9
|
|
10
10
|
|
11
|
+
class BatchingConfig(TypedDict):
|
12
|
+
max_operations: int
|
13
|
+
|
14
|
+
|
11
15
|
@dataclass
|
12
16
|
class StrawberryConfig:
|
13
17
|
auto_camel_case: InitVar[bool] = None # pyright: reportGeneralTypeIssues=false
|
@@ -19,6 +23,7 @@ class StrawberryConfig:
|
|
19
23
|
info_class: type[Info] = Info
|
20
24
|
enable_experimental_incremental_execution: bool = False
|
21
25
|
_unsafe_disable_same_type_validation: bool = False
|
26
|
+
batching_config: Optional[BatchingConfig] = None
|
22
27
|
|
23
28
|
def __post_init__(
|
24
29
|
self,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: strawberry-graphql
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.278.1
|
4
4
|
Summary: A library for creating GraphQL APIs
|
5
5
|
License: MIT
|
6
6
|
Keywords: graphql,api,rest,starlette,async
|
@@ -37,6 +37,7 @@ Requires-Dist: channels (>=3.0.5) ; extra == "channels"
|
|
37
37
|
Requires-Dist: fastapi (>=0.65.2) ; extra == "fastapi"
|
38
38
|
Requires-Dist: flask (>=1.1) ; extra == "flask"
|
39
39
|
Requires-Dist: graphql-core (>=3.2.0,<3.4.0)
|
40
|
+
Requires-Dist: lia-web (>=0.2.1)
|
40
41
|
Requires-Dist: libcst ; extra == "cli"
|
41
42
|
Requires-Dist: libcst ; extra == "debug"
|
42
43
|
Requires-Dist: libcst ; extra == "debug-server"
|
@@ -3,18 +3,18 @@ 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=
|
6
|
+
strawberry/aiohttp/views.py,sha256=95JdROO8LjCpAG1DvYyxDq96kYVfLzzuRJvDjiTqBZg,6656
|
7
7
|
strawberry/annotation.py,sha256=68j7Sku1JT7pUTsUMxekWmQMyFdlV1D0jLFjukmmGpQ,15907
|
8
|
-
strawberry/asgi/__init__.py,sha256=
|
8
|
+
strawberry/asgi/__init__.py,sha256=nX-YyE9I1t-np7sZ9CK02wBj8EYxZj1M4JAozQS9Rp4,7313
|
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=bsi8P7Ljl0eJaerpuisKrcJZXNK4-Z4YeG32uwhACGs,3868
|
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=
|
17
|
-
strawberry/channels/handlers/ws_handler.py,sha256
|
16
|
+
strawberry/channels/handlers/http_handler.py,sha256=EmRVgn0AHG9-dNUOU_rgKf0Ppsh8aiVYpXsVWMJKbNE,12461
|
17
|
+
strawberry/channels/handlers/ws_handler.py,sha256=lf6nzr0HR9IQ5CEq-GoVCixUmMZO1uLlhdOoBVasyOA,6228
|
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=9rqBIeRSi0P0JljMWO43KC3inm4BBf0CX5pEWQWnTos,662
|
@@ -50,7 +50,7 @@ strawberry/django/apps.py,sha256=ZWw3Mzv1Cgy0T9xT8Jr2_dkCTZjT5WQABb34iqnu5pc,135
|
|
50
50
|
strawberry/django/context.py,sha256=XL85jDGAVnb2pwgm5uRUvIXwlGia3i-8ZVfKihf0T24,655
|
51
51
|
strawberry/django/test/__init__.py,sha256=4xxdUZtIISSOwjrcnmox7AvT4WWjowCm5bUuPdQneMg,71
|
52
52
|
strawberry/django/test/client.py,sha256=5sAZhCyNiydnQtauI_7H_TRnPfHV3V5d-FKxxDxvTAs,620
|
53
|
-
strawberry/django/views.py,sha256=
|
53
|
+
strawberry/django/views.py,sha256=jMqy4kb1JJMZbaxutRy9ZMLrqaR2jBzgfkpksE3u0lo,7892
|
54
54
|
strawberry/exceptions/__init__.py,sha256=frr0FLykBb8saILFg4pyvhPN0CY3DdSahBUFwK4Hqf0,6628
|
55
55
|
strawberry/exceptions/conflicting_arguments.py,sha256=FJ5ZlZ_C9O7XS0H9hB0KGRRix0mcB4P6WwIccTJeh-g,1581
|
56
56
|
strawberry/exceptions/duplicated_type_name.py,sha256=Yc8UKO_pTtuXZmkEWp1onBdQitkMSMrfvWfeauLQ-ZI,2204
|
@@ -114,7 +114,7 @@ strawberry/extensions/utils.py,sha256=sjhxItHzbDhqHtnR63WbE35qzHhTyf9NSffidet79H
|
|
114
114
|
strawberry/extensions/validation_cache.py,sha256=Fp0bz0HfbMVjaOVfTyetR7Knhic0tthkzB_0kOOyJY0,1447
|
115
115
|
strawberry/fastapi/__init__.py,sha256=p5qg9AlkYjNOWKcT4uRiebIpR6pIb1HqDMiDfF5O3tg,147
|
116
116
|
strawberry/fastapi/context.py,sha256=O_cDNppfUJJecM0ZU_RJ-dhdF0o1x39JfYvYg-7uob4,684
|
117
|
-
strawberry/fastapi/router.py,sha256=
|
117
|
+
strawberry/fastapi/router.py,sha256=ssH9VnWfYNjYQ9Ldbxk1dPO3u59NBVe_XEEcX64AQDk,12089
|
118
118
|
strawberry/federation/__init__.py,sha256=Pw01N0rG9o0NaUxXLMNGeW5oLENeWVx_d8Kuef1ES4s,549
|
119
119
|
strawberry/federation/argument.py,sha256=rs71S1utiNUd4XOLRa9KVtSMA3yqvKJnR_qdJqX6PPM,860
|
120
120
|
strawberry/federation/enum.py,sha256=geyNA00IjUBroBc6EFrTK0n6DGIVyKOeSE_3aqiwUaQ,3151
|
@@ -133,19 +133,19 @@ strawberry/file_uploads/__init__.py,sha256=v2-6FGBqnTnMPSUTFOiXpIutDMl-ga0PFtw5t
|
|
133
133
|
strawberry/file_uploads/scalars.py,sha256=NRDeB7j8aotqIkz9r62ISTf4DrxQxEZYUuHsX5K16aU,161
|
134
134
|
strawberry/file_uploads/utils.py,sha256=-c6TbqUI-Dkb96hWCrZabh6TL2OabBuQNkCarOqgDm4,1181
|
135
135
|
strawberry/flask/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
136
|
-
strawberry/flask/views.py,sha256=
|
136
|
+
strawberry/flask/views.py,sha256=eFB9s-gVNw8xEmHlxAkiMRlK2CCojQlDrPTf7aVsZvY,4579
|
137
137
|
strawberry/http/__init__.py,sha256=8UWXKZ2IG6_nInp9liUj0qMquDNRR-9o--0EMBL-gnQ,1482
|
138
|
-
strawberry/http/async_base_view.py,sha256=-
|
139
|
-
strawberry/http/base.py,sha256=
|
140
|
-
strawberry/http/exceptions.py,sha256=
|
138
|
+
strawberry/http/async_base_view.py,sha256=-n_gD2Wa8wAZcms89qDGX3jMrMNhwdEPZatS4bXIbiM,25688
|
139
|
+
strawberry/http/base.py,sha256=TxvzTtHPrRTCQfJK5pbSXCE2AezT2gpKBRrN58a5Mmc,3215
|
140
|
+
strawberry/http/exceptions.py,sha256=5uud0ZijcMC7TS9iiqMTre9DVIe04judh8E8nSbwxy8,258
|
141
141
|
strawberry/http/ides.py,sha256=WjU0nsMDgr3Bd1ebWkUEkO2d1hk0dI16mLqXyCHqklA,613
|
142
142
|
strawberry/http/parse_content_type.py,sha256=CYHO8F9b9DP1gJ1xxPjc9L2GkBwsyC1O_GCEp1QOuG0,381
|
143
|
-
strawberry/http/sync_base_view.py,sha256=
|
143
|
+
strawberry/http/sync_base_view.py,sha256=FfufahmBBrRHRVTCGNymcLUAbPxmSqCyIS94pPNebBs,10267
|
144
144
|
strawberry/http/temporal_response.py,sha256=HTt65g-YxqlPGxjqvH5bzGoU1b3CctVR-9cmCRo5dUo,196
|
145
145
|
strawberry/http/types.py,sha256=H0wGOdCO-5tNKZM_6cAtNRwZAjoEXnAC5N0Q7b70AtU,398
|
146
146
|
strawberry/http/typevars.py,sha256=Uu6NkKe3h7o29ZWwldq6sJy4ioSSeXODTCDRvY2hUpE,489
|
147
147
|
strawberry/litestar/__init__.py,sha256=zsXzg-mglCGUVO9iNXLm-yadoDSCK7k-zuyRqyvAh1w,237
|
148
|
-
strawberry/litestar/controller.py,sha256=
|
148
|
+
strawberry/litestar/controller.py,sha256=s5vQUy9Xs43gwZU5DAu6jklHocgcEOnbiBj_aPakZsM,13108
|
149
149
|
strawberry/parent.py,sha256=JYFp-HGCgwbH2oB4uLSiIO4cVsoPaxX6lfYmxOKPkSg,1362
|
150
150
|
strawberry/permission.py,sha256=dSRJMjSCmTlXfvfC24kCSrAk0txTjYKTJ5ZVU5IW91Y,7537
|
151
151
|
strawberry/printer/__init__.py,sha256=DmepjmgtkdF5RxK_7yC6qUyRWn56U-9qeZMbkztYB9w,62
|
@@ -153,7 +153,7 @@ strawberry/printer/ast_from_value.py,sha256=Tkme60qlykbN2m3dNPNMOe65X-wj6EmcDQwg
|
|
153
153
|
strawberry/printer/printer.py,sha256=5E9w0wDsUv1hvkeXof12277NLMiCVy5MgJ6gSo_NJhQ,19177
|
154
154
|
strawberry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
155
|
strawberry/quart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
156
|
-
strawberry/quart/views.py,sha256=
|
156
|
+
strawberry/quart/views.py,sha256=otrWlDdbgHooxAjD7Sf-E82B-PmOaNwCN07oF7Bjhsg,6618
|
157
157
|
strawberry/relay/__init__.py,sha256=Vi4btvA_g6Cj9Tk_F9GCSegapIf2WqkOWV8y3P0cTCs,553
|
158
158
|
strawberry/relay/exceptions.py,sha256=Za0iXLBGZtd1HkesGm4xTr3QOeuyiCAe1hiCCQ2HHvE,4036
|
159
159
|
strawberry/relay/fields.py,sha256=eqQOH8JAWZUP52nwaYCZ_z5Jvp69_T_gx1pxjrdgV1k,18284
|
@@ -163,13 +163,13 @@ strawberry/resolvers.py,sha256=Vdidc3YFc4-olSQZD_xQ1icyAFbyzqs_8I3eSpMFlA4,260
|
|
163
163
|
strawberry/sanic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
164
|
strawberry/sanic/context.py,sha256=qN7I9K_qIqgdbG_FbDl8XMb9aM1PyjIxSo8IAg2Uq8o,844
|
165
165
|
strawberry/sanic/utils.py,sha256=XjUVBFuBWfECBCZbx_YtrjQnFTUyIGTo7aISIeB22Gc,1007
|
166
|
-
strawberry/sanic/views.py,sha256=
|
166
|
+
strawberry/sanic/views.py,sha256=8Tl5pMYnbaju7WYxJImtJTwVi2XZBKWEwnSB-tYbZGw,5682
|
167
167
|
strawberry/scalars.py,sha256=CGkG8CIfurXiYhidmW3qwy6M5BF_Mhih3wAEcWx_iBU,2278
|
168
168
|
strawberry/schema/__init__.py,sha256=u1QCyDVQExUVDA20kyosKPz3TS5HMCN2NrXclhiFAL4,92
|
169
169
|
strawberry/schema/_graphql_core.py,sha256=_ubCP_4ZZ1KwZGLlHTPPcUVPk_hDh6EOp2FxjCfyKxM,1642
|
170
170
|
strawberry/schema/base.py,sha256=wqvEOQ_aVkfebk9SlG9zg1YXl3MlwxGZhxFRoIkAxu0,4053
|
171
171
|
strawberry/schema/compat.py,sha256=xNpOEDfi-MODpplMGaKuKeQIVcr-tcAaKaU3TlBc1Zs,1873
|
172
|
-
strawberry/schema/config.py,sha256=
|
172
|
+
strawberry/schema/config.py,sha256=bkEMn0EkBRg2Tl6ZZH5hpOGBNiAw9QcOclt5dI_Yd1g,1217
|
173
173
|
strawberry/schema/exceptions.py,sha256=8gsMxxFDynMvRkUDuVL9Wwxk_zsmo6QoJ2l4NPxd64M,1137
|
174
174
|
strawberry/schema/name_converter.py,sha256=JG5JKLr9wp8BMJIvG3_bVkwFdoLGbknNR1Bt75urXN0,6950
|
175
175
|
strawberry/schema/schema.py,sha256=EZ6YLV5wqHrjxi3rVJ0HvbGeIlZrbSOZqEomKlu4-OY,39433
|
@@ -236,8 +236,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
|
|
236
236
|
strawberry/utils/operation.py,sha256=ZgVOw3K2jQuLjNOYUHauF7itJD0QDNoPw9PBi0IYf6k,1234
|
237
237
|
strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
|
238
238
|
strawberry/utils/typing.py,sha256=SDvX-Du-9HAV3-XXjqi7Q5f5qPDDFd_gASIITiwBQT4,14073
|
239
|
-
strawberry_graphql-0.
|
240
|
-
strawberry_graphql-0.
|
241
|
-
strawberry_graphql-0.
|
242
|
-
strawberry_graphql-0.
|
243
|
-
strawberry_graphql-0.
|
239
|
+
strawberry_graphql-0.278.1.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
240
|
+
strawberry_graphql-0.278.1.dist-info/METADATA,sha256=r90Q-i1R-Ulf5SsQvJZoNUoW-N3TZkK-jMmj8od9ZGs,7426
|
241
|
+
strawberry_graphql-0.278.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
242
|
+
strawberry_graphql-0.278.1.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
243
|
+
strawberry_graphql-0.278.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{strawberry_graphql-0.277.1.dist-info → strawberry_graphql-0.278.1.dist-info}/entry_points.txt
RENAMED
File without changes
|