strawberry-graphql 0.223.0__py3-none-any.whl → 0.224.0__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.
@@ -1,6 +1,6 @@
1
1
  try:
2
2
  from . import pydantic
3
- except ImportError:
3
+ except ModuleNotFoundError:
4
4
  pass
5
5
  else:
6
6
  __all__ = ["pydantic"]
@@ -1,10 +1,16 @@
1
1
  import dataclasses
2
2
  from dataclasses import dataclass
3
- from typing import TYPE_CHECKING, Any, Callable, Dict, Optional, Type
3
+ from decimal import Decimal
4
+ from functools import cached_property
5
+ from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Type
6
+ from uuid import UUID
4
7
 
8
+ import pydantic
5
9
  from pydantic import BaseModel
6
10
  from pydantic.version import VERSION as PYDANTIC_VERSION
7
11
 
12
+ from strawberry.experimental.pydantic.exceptions import UnsupportedTypeError
13
+
8
14
  if TYPE_CHECKING:
9
15
  from pydantic.fields import FieldInfo
10
16
 
@@ -24,21 +30,101 @@ class CompatModelField:
24
30
  allow_none: bool
25
31
  has_alias: bool
26
32
  description: Optional[str]
33
+ _missing_type: Any
34
+ is_v1: bool
27
35
 
36
+ @property
37
+ def has_default_factory(self) -> bool:
38
+ return self.default_factory is not self._missing_type
28
39
 
29
- if IS_PYDANTIC_V2:
30
- from typing_extensions import get_args, get_origin
40
+ @property
41
+ def has_default(self) -> bool:
42
+ return self.default is not self._missing_type
31
43
 
32
- from pydantic._internal._typing_extra import is_new_type
33
- from pydantic._internal._utils import lenient_issubclass, smart_deepcopy
34
- from pydantic_core import PydanticUndefined
35
44
 
36
- PYDANTIC_MISSING_TYPE = PydanticUndefined
45
+ ATTR_TO_TYPE_MAP = {
46
+ "NoneStr": Optional[str],
47
+ "NoneBytes": Optional[bytes],
48
+ "StrBytes": None,
49
+ "NoneStrBytes": None,
50
+ "StrictStr": str,
51
+ "ConstrainedBytes": bytes,
52
+ "conbytes": bytes,
53
+ "ConstrainedStr": str,
54
+ "constr": str,
55
+ "EmailStr": str,
56
+ "PyObject": None,
57
+ "ConstrainedInt": int,
58
+ "conint": int,
59
+ "PositiveInt": int,
60
+ "NegativeInt": int,
61
+ "ConstrainedFloat": float,
62
+ "confloat": float,
63
+ "PositiveFloat": float,
64
+ "NegativeFloat": float,
65
+ "ConstrainedDecimal": Decimal,
66
+ "condecimal": Decimal,
67
+ "UUID1": UUID,
68
+ "UUID3": UUID,
69
+ "UUID4": UUID,
70
+ "UUID5": UUID,
71
+ "FilePath": None,
72
+ "DirectoryPath": None,
73
+ "Json": None,
74
+ "JsonWrapper": None,
75
+ "SecretStr": str,
76
+ "SecretBytes": bytes,
77
+ "StrictBool": bool,
78
+ "StrictInt": int,
79
+ "StrictFloat": float,
80
+ "PaymentCardNumber": None,
81
+ "ByteSize": None,
82
+ "AnyUrl": str,
83
+ "AnyHttpUrl": str,
84
+ "HttpUrl": str,
85
+ "PostgresDsn": str,
86
+ "RedisDsn": str,
87
+ }
88
+
89
+ ATTR_TO_TYPE_MAP_Pydantic_V2 = {
90
+ "EmailStr": str,
91
+ "SecretStr": str,
92
+ "SecretBytes": bytes,
93
+ "AnyUrl": str,
94
+ }
95
+
96
+ ATTR_TO_TYPE_MAP_Pydantic_Core_V2 = {
97
+ "MultiHostUrl": str,
98
+ }
37
99
 
38
- def new_type_supertype(type_: Any) -> Any:
39
- return type_.__supertype__
40
100
 
41
- def get_model_fields(model: Type[BaseModel]) -> Dict[str, CompatModelField]:
101
+ def get_fields_map_for_v2() -> Dict[Any, Any]:
102
+ import pydantic_core
103
+
104
+ fields_map = {
105
+ getattr(pydantic, field_name): type
106
+ for field_name, type in ATTR_TO_TYPE_MAP_Pydantic_V2.items()
107
+ if hasattr(pydantic, field_name)
108
+ }
109
+ fields_map.update(
110
+ {
111
+ getattr(pydantic_core, field_name): type
112
+ for field_name, type in ATTR_TO_TYPE_MAP_Pydantic_Core_V2.items()
113
+ if hasattr(pydantic_core, field_name)
114
+ }
115
+ )
116
+
117
+ return fields_map
118
+
119
+
120
+ class PydanticV2Compat:
121
+ @property
122
+ def PYDANTIC_MISSING_TYPE(self) -> Any:
123
+ from pydantic_core import PydanticUndefined
124
+
125
+ return PydanticUndefined
126
+
127
+ def get_model_fields(self, model: Type[BaseModel]) -> Dict[str, CompatModelField]:
42
128
  field_info: dict[str, FieldInfo] = model.model_fields
43
129
  new_fields = {}
44
130
  # Convert it into CompatModelField
@@ -55,24 +141,34 @@ if IS_PYDANTIC_V2:
55
141
  allow_none=False,
56
142
  has_alias=field is not None,
57
143
  description=field.description,
144
+ _missing_type=self.PYDANTIC_MISSING_TYPE,
145
+ is_v1=False,
58
146
  )
59
147
  return new_fields
60
148
 
61
- else:
62
- from pydantic.typing import ( # type: ignore[no-redef]
63
- get_args,
64
- get_origin,
65
- is_new_type,
66
- new_type_supertype,
67
- )
68
- from pydantic.utils import ( # type: ignore[no-redef]
69
- lenient_issubclass,
70
- smart_deepcopy,
71
- )
149
+ @cached_property
150
+ def fields_map(self) -> Dict[Any, Any]:
151
+ return get_fields_map_for_v2()
72
152
 
73
- PYDANTIC_MISSING_TYPE = dataclasses.MISSING # type: ignore[assignment]
153
+ def get_basic_type(self, type_: Any) -> Type[Any]:
154
+ if type_ in self.fields_map:
155
+ type_ = self.fields_map[type_]
74
156
 
75
- def get_model_fields(model: Type[BaseModel]) -> Dict[str, CompatModelField]:
157
+ if type_ is None:
158
+ raise UnsupportedTypeError()
159
+
160
+ if is_new_type(type_):
161
+ return new_type_supertype(type_)
162
+
163
+ return type_
164
+
165
+
166
+ class PydanticV1Compat:
167
+ @property
168
+ def PYDANTIC_MISSING_TYPE(self) -> Any:
169
+ return dataclasses.MISSING
170
+
171
+ def get_model_fields(self, model: Type[BaseModel]) -> Dict[str, CompatModelField]:
76
172
  new_fields = {}
77
173
  # Convert it into CompatModelField
78
174
  for name, field in model.__fields__.items(): # type: ignore[attr-defined]
@@ -87,17 +183,104 @@ else:
87
183
  allow_none=field.allow_none,
88
184
  has_alias=field.has_alias,
89
185
  description=field.field_info.description,
186
+ _missing_type=self.PYDANTIC_MISSING_TYPE,
187
+ is_v1=True,
90
188
  )
91
189
  return new_fields
92
190
 
191
+ @cached_property
192
+ def fields_map(self) -> Dict[Any, Any]:
193
+ if IS_PYDANTIC_V2:
194
+ return {
195
+ getattr(pydantic.v1, field_name): type
196
+ for field_name, type in ATTR_TO_TYPE_MAP.items()
197
+ if hasattr(pydantic.v1, field_name)
198
+ }
199
+
200
+ return {
201
+ getattr(pydantic, field_name): type
202
+ for field_name, type in ATTR_TO_TYPE_MAP.items()
203
+ if hasattr(pydantic, field_name)
204
+ }
205
+
206
+ def get_basic_type(self, type_: Any) -> Type[Any]:
207
+ if IS_PYDANTIC_V1:
208
+ ConstrainedInt = pydantic.ConstrainedInt
209
+ ConstrainedFloat = pydantic.ConstrainedFloat
210
+ ConstrainedStr = pydantic.ConstrainedStr
211
+ ConstrainedList = pydantic.ConstrainedList
212
+ else:
213
+ ConstrainedInt = pydantic.v1.ConstrainedInt
214
+ ConstrainedFloat = pydantic.v1.ConstrainedFloat
215
+ ConstrainedStr = pydantic.v1.ConstrainedStr
216
+ ConstrainedList = pydantic.v1.ConstrainedList
217
+
218
+ if lenient_issubclass(type_, ConstrainedInt):
219
+ return int
220
+ if lenient_issubclass(type_, ConstrainedFloat):
221
+ return float
222
+ if lenient_issubclass(type_, ConstrainedStr):
223
+ return str
224
+ if lenient_issubclass(type_, ConstrainedList):
225
+ return List[self.get_basic_type(type_.item_type)] # type: ignore
226
+
227
+ if type_ in self.fields_map:
228
+ type_ = self.fields_map[type_]
229
+
230
+ if type_ is None:
231
+ raise UnsupportedTypeError()
232
+
233
+ if is_new_type(type_):
234
+ return new_type_supertype(type_)
235
+
236
+ return type_
237
+
238
+
239
+ class PydanticCompat:
240
+ def __init__(self, is_v2: bool):
241
+ if is_v2:
242
+ self._compat = PydanticV2Compat()
243
+ else:
244
+ self._compat = PydanticV1Compat() # type: ignore[assignment]
245
+
246
+ @classmethod
247
+ def from_model(cls, model: Type[BaseModel]) -> "PydanticCompat":
248
+ if hasattr(model, "model_fields"):
249
+ return cls(is_v2=True)
250
+
251
+ return cls(is_v2=False)
252
+
253
+ def __getattr__(self, name: str) -> Any:
254
+ return getattr(self._compat, name)
255
+
256
+
257
+ if IS_PYDANTIC_V2:
258
+ from typing_extensions import get_args, get_origin
259
+
260
+ from pydantic._internal._typing_extra import is_new_type
261
+ from pydantic._internal._utils import lenient_issubclass, smart_deepcopy
262
+
263
+ def new_type_supertype(type_: Any) -> Any:
264
+ return type_.__supertype__
265
+ else:
266
+ from pydantic.typing import ( # type: ignore[no-redef]
267
+ get_args,
268
+ get_origin,
269
+ is_new_type,
270
+ new_type_supertype,
271
+ )
272
+ from pydantic.utils import ( # type: ignore[no-redef]
273
+ lenient_issubclass,
274
+ smart_deepcopy,
275
+ )
276
+
93
277
 
94
278
  __all__ = [
95
- "smart_deepcopy",
279
+ "PydanticCompat",
280
+ "is_new_type",
96
281
  "lenient_issubclass",
97
- "get_args",
98
282
  "get_origin",
99
- "is_new_type",
283
+ "get_args",
100
284
  "new_type_supertype",
101
- "get_model_fields",
102
- "PYDANTIC_MISSING_TYPE",
285
+ "smart_deepcopy",
103
286
  ]
@@ -19,7 +19,7 @@ from pydantic import BaseModel
19
19
  from strawberry.auto import StrawberryAuto
20
20
  from strawberry.experimental.pydantic._compat import (
21
21
  CompatModelField,
22
- get_model_fields,
22
+ PydanticCompat,
23
23
  lenient_issubclass,
24
24
  )
25
25
  from strawberry.experimental.pydantic.utils import (
@@ -72,7 +72,8 @@ def error_type(
72
72
  all_fields: bool = False,
73
73
  ) -> Callable[..., Type]:
74
74
  def wrap(cls: Type) -> Type:
75
- model_fields = get_model_fields(model)
75
+ compat = PydanticCompat.from_model(model)
76
+ model_fields = compat.get_model_fields(model)
76
77
  fields_set = set(fields) if fields else set()
77
78
 
78
79
  if fields:
@@ -1,23 +1,17 @@
1
1
  import builtins
2
- from decimal import Decimal
3
- from typing import Any, Dict, List, Optional, Type, Union
2
+ from typing import Any, Union
4
3
  from typing_extensions import Annotated
5
- from uuid import UUID
6
4
 
7
- import pydantic
8
5
  from pydantic import BaseModel
9
6
 
10
7
  from strawberry.experimental.pydantic._compat import (
11
- IS_PYDANTIC_V1,
8
+ PydanticCompat,
12
9
  get_args,
13
10
  get_origin,
14
- is_new_type,
15
11
  lenient_issubclass,
16
- new_type_supertype,
17
12
  )
18
13
  from strawberry.experimental.pydantic.exceptions import (
19
14
  UnregisteredTypeException,
20
- UnsupportedTypeError,
21
15
  )
22
16
  from strawberry.types.types import StrawberryObjectDefinition
23
17
 
@@ -44,115 +38,6 @@ except ImportError:
44
38
  raise
45
39
 
46
40
 
47
- ATTR_TO_TYPE_MAP = {
48
- "NoneStr": Optional[str],
49
- "NoneBytes": Optional[bytes],
50
- "StrBytes": None,
51
- "NoneStrBytes": None,
52
- "StrictStr": str,
53
- "ConstrainedBytes": bytes,
54
- "conbytes": bytes,
55
- "ConstrainedStr": str,
56
- "constr": str,
57
- "EmailStr": str,
58
- "PyObject": None,
59
- "ConstrainedInt": int,
60
- "conint": int,
61
- "PositiveInt": int,
62
- "NegativeInt": int,
63
- "ConstrainedFloat": float,
64
- "confloat": float,
65
- "PositiveFloat": float,
66
- "NegativeFloat": float,
67
- "ConstrainedDecimal": Decimal,
68
- "condecimal": Decimal,
69
- "UUID1": UUID,
70
- "UUID3": UUID,
71
- "UUID4": UUID,
72
- "UUID5": UUID,
73
- "FilePath": None,
74
- "DirectoryPath": None,
75
- "Json": None,
76
- "JsonWrapper": None,
77
- "SecretStr": str,
78
- "SecretBytes": bytes,
79
- "StrictBool": bool,
80
- "StrictInt": int,
81
- "StrictFloat": float,
82
- "PaymentCardNumber": None,
83
- "ByteSize": None,
84
- "AnyUrl": str,
85
- "AnyHttpUrl": str,
86
- "HttpUrl": str,
87
- "PostgresDsn": str,
88
- "RedisDsn": str,
89
- }
90
-
91
- ATTR_TO_TYPE_MAP_Pydantic_V2 = {
92
- "EmailStr": str,
93
- "SecretStr": str,
94
- "SecretBytes": bytes,
95
- "AnyUrl": str,
96
- }
97
-
98
- ATTR_TO_TYPE_MAP_Pydantic_Core_V2 = {
99
- "MultiHostUrl": str,
100
- }
101
-
102
-
103
- def get_fields_map_for_v2() -> Dict[Any, Any]:
104
- import pydantic_core
105
-
106
- fields_map = {
107
- getattr(pydantic, field_name): type
108
- for field_name, type in ATTR_TO_TYPE_MAP_Pydantic_V2.items()
109
- if hasattr(pydantic, field_name)
110
- }
111
- fields_map.update(
112
- {
113
- getattr(pydantic_core, field_name): type
114
- for field_name, type in ATTR_TO_TYPE_MAP_Pydantic_Core_V2.items()
115
- if hasattr(pydantic_core, field_name)
116
- }
117
- )
118
-
119
- return fields_map
120
-
121
-
122
- FIELDS_MAP = (
123
- {
124
- getattr(pydantic, field_name): type
125
- for field_name, type in ATTR_TO_TYPE_MAP.items()
126
- if hasattr(pydantic, field_name)
127
- }
128
- if IS_PYDANTIC_V1
129
- else get_fields_map_for_v2()
130
- )
131
-
132
-
133
- def get_basic_type(type_: Any) -> Type[Any]:
134
- if IS_PYDANTIC_V1:
135
- # only pydantic v1 has these
136
- if lenient_issubclass(type_, pydantic.ConstrainedInt):
137
- return int
138
- if lenient_issubclass(type_, pydantic.ConstrainedFloat):
139
- return float
140
- if lenient_issubclass(type_, pydantic.ConstrainedStr):
141
- return str
142
- if lenient_issubclass(type_, pydantic.ConstrainedList):
143
- return List[get_basic_type(type_.item_type)] # type: ignore
144
-
145
- if type_ in FIELDS_MAP:
146
- type_ = FIELDS_MAP.get(type_)
147
- if type_ is None:
148
- raise UnsupportedTypeError()
149
-
150
- if is_new_type(type_):
151
- return new_type_supertype(type_)
152
-
153
- return type_
154
-
155
-
156
41
  def replace_pydantic_types(type_: Any, is_input: bool) -> Any:
157
42
  if lenient_issubclass(type_, BaseModel):
158
43
  attr = "_strawberry_input_type" if is_input else "_strawberry_type"
@@ -163,17 +48,21 @@ def replace_pydantic_types(type_: Any, is_input: bool) -> Any:
163
48
  return type_
164
49
 
165
50
 
166
- def replace_types_recursively(type_: Any, is_input: bool) -> Any:
51
+ def replace_types_recursively(
52
+ type_: Any, is_input: bool, compat: PydanticCompat
53
+ ) -> Any:
167
54
  """Runs the conversions recursively into the arguments of generic types if any"""
168
- basic_type = get_basic_type(type_)
55
+ basic_type = compat.get_basic_type(type_)
169
56
  replaced_type = replace_pydantic_types(basic_type, is_input)
170
57
 
171
58
  origin = get_origin(type_)
59
+
172
60
  if not origin or not hasattr(type_, "__args__"):
173
61
  return replaced_type
174
62
 
175
63
  converted = tuple(
176
- replace_types_recursively(t, is_input=is_input) for t in get_args(replaced_type)
64
+ replace_types_recursively(t, is_input=is_input, compat=compat)
65
+ for t in get_args(replaced_type)
177
66
  )
178
67
 
179
68
  if isinstance(replaced_type, TypingGenericAlias):
@@ -19,9 +19,8 @@ from typing import (
19
19
  from strawberry.annotation import StrawberryAnnotation
20
20
  from strawberry.auto import StrawberryAuto
21
21
  from strawberry.experimental.pydantic._compat import (
22
- IS_PYDANTIC_V1,
23
22
  CompatModelField,
24
- get_model_fields,
23
+ PydanticCompat,
25
24
  )
26
25
  from strawberry.experimental.pydantic.conversion import (
27
26
  convert_pydantic_model_to_strawberry_class,
@@ -44,10 +43,12 @@ if TYPE_CHECKING:
44
43
  from graphql import GraphQLResolveInfo
45
44
 
46
45
 
47
- def get_type_for_field(field: CompatModelField, is_input: bool): # noqa: ANN201
46
+ def get_type_for_field(field: CompatModelField, is_input: bool, compat: PydanticCompat): # noqa: ANN201
48
47
  outer_type = field.outer_type_
49
- replaced_type = replace_types_recursively(outer_type, is_input)
50
- if IS_PYDANTIC_V1:
48
+
49
+ replaced_type = replace_types_recursively(outer_type, is_input, compat=compat)
50
+
51
+ if field.is_v1:
51
52
  # only pydantic v1 has this Optional logic
52
53
  should_add_optional: bool = field.allow_none
53
54
  if should_add_optional:
@@ -62,9 +63,10 @@ def _build_dataclass_creation_fields(
62
63
  existing_fields: Dict[str, StrawberryField],
63
64
  auto_fields_set: Set[str],
64
65
  use_pydantic_alias: bool,
66
+ compat: PydanticCompat,
65
67
  ) -> DataclassCreationFields:
66
68
  field_type = (
67
- get_type_for_field(field, is_input)
69
+ get_type_for_field(field, is_input, compat=compat)
68
70
  if field.name in auto_fields_set
69
71
  else existing_fields[field.name].type
70
72
  )
@@ -129,7 +131,8 @@ def type(
129
131
  use_pydantic_alias: bool = True,
130
132
  ) -> Callable[..., Type[StrawberryTypeFromPydantic[PydanticModel]]]:
131
133
  def wrap(cls: Any) -> Type[StrawberryTypeFromPydantic[PydanticModel]]:
132
- model_fields = get_model_fields(model)
134
+ compat = PydanticCompat.from_model(model)
135
+ model_fields = compat.get_model_fields(model)
133
136
  original_fields_set = set(fields) if fields else set()
134
137
 
135
138
  if fields:
@@ -182,7 +185,12 @@ def type(
182
185
 
183
186
  all_model_fields: List[DataclassCreationFields] = [
184
187
  _build_dataclass_creation_fields(
185
- field, is_input, extra_fields_dict, auto_fields_set, use_pydantic_alias
188
+ field,
189
+ is_input,
190
+ extra_fields_dict,
191
+ auto_fields_set,
192
+ use_pydantic_alias,
193
+ compat=compat,
186
194
  )
187
195
  for field_name, field in model_fields.items()
188
196
  if field_name in fields_set
@@ -14,9 +14,8 @@ from typing import (
14
14
  )
15
15
 
16
16
  from strawberry.experimental.pydantic._compat import (
17
- PYDANTIC_MISSING_TYPE,
18
17
  CompatModelField,
19
- get_model_fields,
18
+ PydanticCompat,
20
19
  smart_deepcopy,
21
20
  )
22
21
  from strawberry.experimental.pydantic.exceptions import (
@@ -83,12 +82,8 @@ def get_default_factory_for_field(
83
82
  Returns optionally a NoArgAnyCallable representing a default_factory parameter
84
83
  """
85
84
  # replace dataclasses.MISSING with our own UNSET to make comparisons easier
86
- default_factory = (
87
- field.default_factory
88
- if field.default_factory is not PYDANTIC_MISSING_TYPE
89
- else UNSET
90
- )
91
- default = field.default if field.default is not PYDANTIC_MISSING_TYPE else UNSET
85
+ default_factory = field.default_factory if field.has_default_factory else UNSET
86
+ default = field.default if field.has_default else UNSET
92
87
 
93
88
  has_factory = default_factory is not None and default_factory is not UNSET
94
89
  has_default = default is not None and default is not UNSET
@@ -126,8 +121,9 @@ def get_default_factory_for_field(
126
121
  def ensure_all_auto_fields_in_pydantic(
127
122
  model: Type[BaseModel], auto_fields: Set[str], cls_name: str
128
123
  ) -> None:
124
+ compat = PydanticCompat.from_model(model)
129
125
  # Raise error if user defined a strawberry.auto field not present in the model
130
- non_existing_fields = list(auto_fields - get_model_fields(model).keys())
126
+ non_existing_fields = list(auto_fields - compat.get_model_fields(model).keys())
131
127
 
132
128
  if non_existing_fields:
133
129
  raise AutoFieldsNotInBaseModelError(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: strawberry-graphql
3
- Version: 0.223.0
3
+ Version: 0.224.0
4
4
  Summary: A library for creating GraphQL APIs
5
5
  Home-page: https://strawberry.rocks/
6
6
  License: MIT
@@ -81,16 +81,16 @@ strawberry/exceptions/syntax.py,sha256=OCz2Ai1Yn0jonRZXCDI2h30tPNsa8L5wMU8vcqIO4
81
81
  strawberry/exceptions/unresolved_field_type.py,sha256=voYLO7kj_8DW0r3jvwn82HOqFIWk_3jvoPCciXFv5JA,1857
82
82
  strawberry/exceptions/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
83
  strawberry/exceptions/utils/source_finder.py,sha256=AcuevLgWwOSOR5zBDJbVyXMGRUxsTzrr07XUB0UqNiI,20044
84
- strawberry/experimental/__init__.py,sha256=n6Ytr6wBgXt47jLY8rEXQs7G4gZEkm9BCLL0Q8opWfw,94
84
+ strawberry/experimental/__init__.py,sha256=2HP5XtxL8ZKsPp4EDRAbMCqiP7p2V4Cca278JUGxnt0,102
85
85
  strawberry/experimental/pydantic/__init__.py,sha256=jlsYH1j_9W4ieRpUKgt5zQPERDL7nc1ZBNQ3dAhJs8w,241
86
- strawberry/experimental/pydantic/_compat.py,sha256=ofbkbF6wSlBedCKj3qprAgcCfWlXdGL5iUZo355uAvA,3137
86
+ strawberry/experimental/pydantic/_compat.py,sha256=sBWil9Ggf-OqfK35XB-0-rx9MS66QFVEqptPkF3sjC0,8139
87
87
  strawberry/experimental/pydantic/conversion.py,sha256=_YMz4cYCwLUazkT2oCQ4B1gusksnXDHdFm1DldIrU7Q,4213
88
88
  strawberry/experimental/pydantic/conversion_types.py,sha256=psVRmKE5fVcBAUT0Z2vCOLAXHddat2A0jJ-0SB1XDn8,963
89
- strawberry/experimental/pydantic/error_type.py,sha256=Fy7m2E03a86XsF76UoAUeroiJLnvVxBwKKEt6RcMfKs,4311
89
+ strawberry/experimental/pydantic/error_type.py,sha256=s8v0weIVM-9c0e3zqySaaa3pGZan7RvKTGuTtXLGPmE,4366
90
90
  strawberry/experimental/pydantic/exceptions.py,sha256=GJt22DTolA24A0ZHcHsy-fcRkBnavgUZYOo0MBIVcjs,1427
91
- strawberry/experimental/pydantic/fields.py,sha256=m7LJEQ39wko4NRIjYPxhUbwNyZcubrbZmyBumG34CJM,5356
92
- strawberry/experimental/pydantic/object_type.py,sha256=kb1gwHw7vQCshk84a7DMRBp_9zDntrAK3bbI58vjqf0,12160
93
- strawberry/experimental/pydantic/utils.py,sha256=vh9Mz33b5QhomuCMVygZ2mp2jrBOxVejIRK0XdfpygI,3828
91
+ strawberry/experimental/pydantic/fields.py,sha256=QP5vYb8vKf7vOC69cjUPGOdlO_j4kZRdxalWgeqJ5Hk,2588
92
+ strawberry/experimental/pydantic/object_type.py,sha256=gZ_-SJoH4ZG6CIVa2BBInzW9TIXeTw_0-q74a-x1EuI,12372
93
+ strawberry/experimental/pydantic/utils.py,sha256=9m_oKyz0K1rTmh1ZrYtbFfyUNsiV11RiEb7bLrZuOXs,3770
94
94
  strawberry/ext/LICENSE,sha256=_oY0TZg0b_sW0--0T44aMTpy2e2zF1Kiyn8E1qDiivo,1249
95
95
  strawberry/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
96
  strawberry/ext/dataclasses/LICENSE,sha256=WZgm35K_3NJwLqxpEHJJi7CWxVrwTumEz5D3Dtd7WnA,13925
@@ -241,8 +241,8 @@ strawberry/utils/logging.py,sha256=flS7hV0JiIOEdXcrIjda4WyIWix86cpHHFNJL8gl1y4,7
241
241
  strawberry/utils/operation.py,sha256=Um-tBCPl3_bVFN2Ph7o1mnrxfxBes4HFCj6T0x4kZxE,1135
242
242
  strawberry/utils/str_converters.py,sha256=avIgPVLg98vZH9mA2lhzVdyyjqzLsK2NdBw9mJQ02Xk,813
243
243
  strawberry/utils/typing.py,sha256=Qxz1LwyVsNGV7LQW1dFsaUbsswj5LHBOdKLMom5eyEA,13491
244
- strawberry_graphql-0.223.0.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
245
- strawberry_graphql-0.223.0.dist-info/METADATA,sha256=_W5hqZRCE54piac0oXb4DUZtiJGTYgTFZRDQvlhWEaU,7740
246
- strawberry_graphql-0.223.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
247
- strawberry_graphql-0.223.0.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
248
- strawberry_graphql-0.223.0.dist-info/RECORD,,
244
+ strawberry_graphql-0.224.0.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
245
+ strawberry_graphql-0.224.0.dist-info/METADATA,sha256=lahprMtPJhhknOqREgJb0Yc-JujPzgHJXA5loc8tOi8,7740
246
+ strawberry_graphql-0.224.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
247
+ strawberry_graphql-0.224.0.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
248
+ strawberry_graphql-0.224.0.dist-info/RECORD,,