strawberry-graphql 0.275.6__py3-none-any.whl → 0.275.7__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/relay/fields.py +5 -0
- {strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/METADATA +1 -1
- {strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/RECORD +6 -6
- {strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/LICENSE +0 -0
- {strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/WHEEL +0 -0
- {strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/entry_points.txt +0 -0
strawberry/relay/fields.py
CHANGED
@@ -261,7 +261,12 @@ class ConnectionExtension(FieldExtension):
|
|
261
261
|
if isinstance(f_type, StrawberryOptional):
|
262
262
|
f_type = f_type.of_type
|
263
263
|
|
264
|
+
if isinstance(f_type, LazyType):
|
265
|
+
f_type = f_type.resolve_type()
|
266
|
+
|
264
267
|
type_origin = get_origin(f_type) if is_generic_alias(f_type) else f_type
|
268
|
+
if isinstance(type_origin, LazyType):
|
269
|
+
type_origin = type_origin.resolve_type()
|
265
270
|
|
266
271
|
if not isinstance(type_origin, type) or not issubclass(type_origin, Connection):
|
267
272
|
raise RelayWrongAnnotationError(field.name, cast("type", field.origin))
|
@@ -156,7 +156,7 @@ strawberry/quart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
156
156
|
strawberry/quart/views.py,sha256=f41HWnkGPuhs1NkjwHOZ0DEVnlr5nMSMr9GCxNsBxCs,7461
|
157
157
|
strawberry/relay/__init__.py,sha256=Vi4btvA_g6Cj9Tk_F9GCSegapIf2WqkOWV8y3P0cTCs,553
|
158
158
|
strawberry/relay/exceptions.py,sha256=Za0iXLBGZtd1HkesGm4xTr3QOeuyiCAe1hiCCQ2HHvE,4036
|
159
|
-
strawberry/relay/fields.py,sha256=
|
159
|
+
strawberry/relay/fields.py,sha256=eqQOH8JAWZUP52nwaYCZ_z5Jvp69_T_gx1pxjrdgV1k,18284
|
160
160
|
strawberry/relay/types.py,sha256=u3-V7LPe_CniEmREMJyvXH9L9Ecc2CWQC5hRfUvL_Q4,30477
|
161
161
|
strawberry/relay/utils.py,sha256=-QxroxkSYtFnMYsJyTyfIi0I1fLtjnt6siW0kLNiyfs,5908
|
162
162
|
strawberry/resolvers.py,sha256=Vdidc3YFc4-olSQZD_xQ1icyAFbyzqs_8I3eSpMFlA4,260
|
@@ -234,8 +234,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
|
|
234
234
|
strawberry/utils/operation.py,sha256=ZgVOw3K2jQuLjNOYUHauF7itJD0QDNoPw9PBi0IYf6k,1234
|
235
235
|
strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
|
236
236
|
strawberry/utils/typing.py,sha256=SDvX-Du-9HAV3-XXjqi7Q5f5qPDDFd_gASIITiwBQT4,14073
|
237
|
-
strawberry_graphql-0.275.
|
238
|
-
strawberry_graphql-0.275.
|
239
|
-
strawberry_graphql-0.275.
|
240
|
-
strawberry_graphql-0.275.
|
241
|
-
strawberry_graphql-0.275.
|
237
|
+
strawberry_graphql-0.275.7.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
|
238
|
+
strawberry_graphql-0.275.7.dist-info/METADATA,sha256=QfmbPZ7c8UPFaSonqKNV3C2Db0p8WPb2jB1d5osab_M,7393
|
239
|
+
strawberry_graphql-0.275.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
240
|
+
strawberry_graphql-0.275.7.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
|
241
|
+
strawberry_graphql-0.275.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{strawberry_graphql-0.275.6.dist-info → strawberry_graphql-0.275.7.dist-info}/entry_points.txt
RENAMED
File without changes
|