strawberry-graphql 0.278.1__py3-none-any.whl → 0.279.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.

Potentially problematic release.


This version of strawberry-graphql might be problematic. Click here for more details.

@@ -10,6 +10,7 @@ from libcst.codemod import CodemodContext
10
10
 
11
11
  from strawberry.cli.app import app
12
12
  from strawberry.codemods.annotated_unions import ConvertUnionToAnnotatedUnion
13
+ from strawberry.codemods.maybe_optional import ConvertMaybeToOptional
13
14
  from strawberry.codemods.update_imports import UpdateImportsCodemod
14
15
 
15
16
  from ._run_codemod import run_codemod
@@ -17,6 +18,7 @@ from ._run_codemod import run_codemod
17
18
  codemods = {
18
19
  "annotated-union": ConvertUnionToAnnotatedUnion,
19
20
  "update-imports": UpdateImportsCodemod,
21
+ "maybe-optional": ConvertMaybeToOptional,
20
22
  }
21
23
 
22
24
 
@@ -0,0 +1,9 @@
1
+ from .annotated_unions import ConvertUnionToAnnotatedUnion
2
+ from .maybe_optional import ConvertMaybeToOptional
3
+ from .update_imports import UpdateImportsCodemod
4
+
5
+ __all__ = [
6
+ "ConvertMaybeToOptional",
7
+ "ConvertUnionToAnnotatedUnion",
8
+ "UpdateImportsCodemod",
9
+ ]
@@ -0,0 +1,118 @@
1
+ from __future__ import annotations
2
+
3
+ import libcst as cst
4
+ import libcst.matchers as m
5
+ from libcst._nodes.expression import BaseExpression # noqa: TC002
6
+ from libcst.codemod import CodemodContext, VisitorBasedCodemodCommand
7
+ from libcst.codemod.visitors import AddImportsVisitor
8
+
9
+
10
+ class ConvertMaybeToOptional(VisitorBasedCodemodCommand):
11
+ DESCRIPTION: str = (
12
+ "Converts strawberry.Maybe[T] to strawberry.Maybe[T | None] "
13
+ "to match the new Maybe type definition"
14
+ )
15
+
16
+ def __init__(
17
+ self,
18
+ context: CodemodContext,
19
+ use_pipe_syntax: bool = True, # Default to pipe syntax for modern Python
20
+ ) -> None:
21
+ self.use_pipe_syntax = use_pipe_syntax
22
+ super().__init__(context)
23
+
24
+ @m.leave(
25
+ m.Subscript(
26
+ value=m.Attribute(value=m.Name("strawberry"), attr=m.Name("Maybe"))
27
+ | m.Name("Maybe")
28
+ )
29
+ )
30
+ def leave_maybe_subscript(
31
+ self, original_node: cst.Subscript, updated_node: cst.Subscript
32
+ ) -> BaseExpression:
33
+ # Skip if it's not a strawberry.Maybe or imported Maybe
34
+ if isinstance(original_node.value, cst.Name):
35
+ # Check if this is an imported Maybe from strawberry
36
+ # For now, we'll assume any standalone "Maybe" is from strawberry
37
+ # In a more robust implementation, we'd track imports
38
+ pass
39
+
40
+ # Get the inner type
41
+ if isinstance(original_node.slice, (list, tuple)):
42
+ if len(original_node.slice) != 1:
43
+ return original_node
44
+ slice_element = original_node.slice[0]
45
+ else:
46
+ slice_element = original_node.slice
47
+
48
+ if not isinstance(slice_element, cst.SubscriptElement):
49
+ return original_node
50
+
51
+ if not isinstance(slice_element.slice, cst.Index):
52
+ return original_node
53
+
54
+ inner_type = slice_element.slice.value
55
+
56
+ # Check if the inner type already includes None
57
+ if self._already_includes_none(inner_type):
58
+ return original_node
59
+
60
+ # Create the new union type with None
61
+ new_type: BaseExpression
62
+ if self.use_pipe_syntax:
63
+ new_type = cst.BinaryOperation(
64
+ left=inner_type,
65
+ operator=cst.BitOr(
66
+ whitespace_before=cst.SimpleWhitespace(" "),
67
+ whitespace_after=cst.SimpleWhitespace(" "),
68
+ ),
69
+ right=cst.Name("None"),
70
+ )
71
+ else:
72
+ # Use Union[T, None] syntax
73
+ AddImportsVisitor.add_needed_import(self.context, "typing", "Union")
74
+ new_type = cst.Subscript(
75
+ value=cst.Name("Union"),
76
+ slice=[
77
+ cst.SubscriptElement(slice=cst.Index(value=inner_type)),
78
+ cst.SubscriptElement(slice=cst.Index(value=cst.Name("None"))),
79
+ ],
80
+ )
81
+
82
+ # Return the updated Maybe[T | None]
83
+ return updated_node.with_changes(
84
+ slice=[cst.SubscriptElement(slice=cst.Index(value=new_type))]
85
+ )
86
+
87
+ def _already_includes_none(self, node: BaseExpression) -> bool:
88
+ """Check if the type already includes None (e.g., T | None or Union[T, None])."""
89
+ # Check for T | None pattern
90
+ if isinstance(node, cst.BinaryOperation) and isinstance(
91
+ node.operator, cst.BitOr
92
+ ):
93
+ if isinstance(node.right, cst.Name) and node.right.value == "None":
94
+ return True
95
+ # Recursively check left side for chained unions
96
+ if self._already_includes_none(node.left):
97
+ return True
98
+
99
+ # Check for Union[..., None] pattern
100
+ if (
101
+ isinstance(node, cst.Subscript)
102
+ and isinstance(node.value, cst.Name)
103
+ and node.value.value == "Union"
104
+ ):
105
+ # Handle both list and tuple slice formats
106
+ slice_elements = (
107
+ node.slice if isinstance(node.slice, (list, tuple)) else [node.slice]
108
+ )
109
+ for element in slice_elements:
110
+ if (
111
+ isinstance(element, cst.SubscriptElement)
112
+ and isinstance(element.slice, cst.Index)
113
+ and isinstance(element.slice.value, cst.Name)
114
+ and element.slice.value.value == "None"
115
+ ):
116
+ return True
117
+
118
+ return False
@@ -50,6 +50,7 @@ from strawberry.extensions.directives import (
50
50
  from strawberry.extensions.runner import SchemaExtensionsRunner
51
51
  from strawberry.printer import print_schema
52
52
  from strawberry.schema.schema_converter import GraphQLCoreConverter
53
+ from strawberry.schema.validation_rules.maybe_null import MaybeNullValidationRule
53
54
  from strawberry.schema.validation_rules.one_of import OneOfInputValidationRule
54
55
  from strawberry.types.base import (
55
56
  StrawberryObjectDefinition,
@@ -124,6 +125,7 @@ def validate_document(
124
125
  ) -> list[GraphQLError]:
125
126
  validation_rules = (
126
127
  *validation_rules,
128
+ MaybeNullValidationRule,
127
129
  OneOfInputValidationRule,
128
130
  )
129
131
  return validate(
@@ -854,6 +854,13 @@ class GraphQLCoreConverter:
854
854
  NoneType = type(None)
855
855
  if type_ is None or type_ is NoneType:
856
856
  return self.from_type(type_)
857
+ if isinstance(type_, StrawberryMaybe):
858
+ # StrawberryMaybe should always generate optional types
859
+ # because Maybe[T] = Union[Some[T], None] (field can be absent)
860
+ # But we need to handle the case where of_type is itself optional
861
+ if isinstance(type_.of_type, StrawberryOptional):
862
+ return self.from_type(type_.of_type.of_type)
863
+ return self.from_type(type_.of_type)
857
864
  if isinstance(type_, StrawberryOptional):
858
865
  return self.from_type(type_.of_type)
859
866
  return GraphQLNonNull(self.from_type(type_))
@@ -0,0 +1,136 @@
1
+ from typing import Any
2
+
3
+ from graphql import (
4
+ ArgumentNode,
5
+ GraphQLError,
6
+ GraphQLNamedType,
7
+ ObjectValueNode,
8
+ ValidationContext,
9
+ ValidationRule,
10
+ get_named_type,
11
+ )
12
+
13
+ from strawberry.types.base import StrawberryMaybe, StrawberryOptional
14
+ from strawberry.utils.str_converters import to_camel_case
15
+
16
+
17
+ class MaybeNullValidationRule(ValidationRule):
18
+ """Validates that Maybe[T] fields do not receive explicit null values.
19
+
20
+ This rule ensures that:
21
+ - Maybe[T] fields can only be omitted or have non-null values
22
+ - Maybe[T | None] fields can be omitted, null, or have non-null values
23
+
24
+ This provides clear semantics where Maybe[T] means "either present with value or absent"
25
+ and Maybe[T | None] means "present with value, present but null, or absent".
26
+ """
27
+
28
+ def __init__(self, validation_context: ValidationContext) -> None:
29
+ super().__init__(validation_context)
30
+
31
+ def enter_argument(self, node: ArgumentNode, *_args: Any) -> None:
32
+ # Check if this is a null value
33
+ if node.value.kind != "null_value":
34
+ return
35
+
36
+ # Get the argument definition from the schema
37
+ argument_def = self.context.get_argument()
38
+ if not argument_def:
39
+ return
40
+
41
+ # Check if this argument corresponds to a Maybe[T] (not Maybe[T | None])
42
+ # The argument type extensions should contain the Strawberry type info
43
+ strawberry_arg_info = argument_def.extensions.get("strawberry-definition")
44
+ if not strawberry_arg_info:
45
+ return
46
+
47
+ # Get the Strawberry type from the argument info
48
+ field_type = getattr(strawberry_arg_info, "type", None)
49
+ if not field_type:
50
+ return
51
+
52
+ if isinstance(field_type, StrawberryMaybe) and not isinstance(
53
+ field_type.of_type, StrawberryOptional
54
+ ):
55
+ # This is Maybe[T] - should not accept null values
56
+ type_name = self._get_type_name(field_type.of_type)
57
+
58
+ self.report_error(
59
+ GraphQLError(
60
+ f"Expected value of type '{type_name}', found null. "
61
+ f"Argument '{node.name.value}' of type 'Maybe[{type_name}]' cannot be explicitly set to null. "
62
+ f"Use 'Maybe[{type_name} | None]' if you need to allow null values.",
63
+ nodes=[node],
64
+ )
65
+ )
66
+
67
+ def enter_object_value(self, node: ObjectValueNode, *_args: Any) -> None:
68
+ # Get the input type for this object
69
+ input_type = get_named_type(self.context.get_input_type())
70
+ if not input_type:
71
+ return
72
+
73
+ # Get the Strawberry type definition from extensions
74
+ strawberry_type = input_type.extensions.get("strawberry-definition")
75
+ if not strawberry_type:
76
+ return
77
+
78
+ # Check each field in the object for null Maybe[T] violations
79
+ self.validate_maybe_fields(node, input_type, strawberry_type)
80
+
81
+ def validate_maybe_fields(
82
+ self, node: ObjectValueNode, input_type: GraphQLNamedType, strawberry_type: Any
83
+ ) -> None:
84
+ # Create a map of field names to field nodes for easy lookup
85
+ field_node_map = {field.name.value: field for field in node.fields}
86
+
87
+ # Check each field in the Strawberry type definition
88
+ if not hasattr(strawberry_type, "fields"):
89
+ return
90
+
91
+ for field_def in strawberry_type.fields:
92
+ # Resolve the actual GraphQL field name using the same logic as NameConverter
93
+ if field_def.graphql_name is not None:
94
+ field_name = field_def.graphql_name
95
+ else:
96
+ # Apply auto_camel_case conversion if enabled (default behavior)
97
+ field_name = to_camel_case(field_def.python_name)
98
+
99
+ # Check if this field is present in the input and has a null value
100
+ if field_name in field_node_map:
101
+ field_node = field_node_map[field_name]
102
+
103
+ # Check if this field has a null value
104
+ if field_node.value.kind == "null_value":
105
+ # Check if this is a Maybe[T] (not Maybe[T | None])
106
+ field_type = field_def.type
107
+ if isinstance(field_type, StrawberryMaybe) and not isinstance(
108
+ field_type.of_type, StrawberryOptional
109
+ ):
110
+ # This is Maybe[T] - should not accept null values
111
+ type_name = self._get_type_name(field_type.of_type)
112
+ self.report_error(
113
+ GraphQLError(
114
+ f"Expected value of type '{type_name}', found null. "
115
+ f"Field '{field_name}' of type 'Maybe[{type_name}]' cannot be explicitly set to null. "
116
+ f"Use 'Maybe[{type_name} | None]' if you need to allow null values.",
117
+ nodes=[field_node],
118
+ )
119
+ )
120
+
121
+ def _get_type_name(self, type_: Any) -> str:
122
+ """Get a readable type name for error messages."""
123
+ if hasattr(type_, "__name__"):
124
+ return type_.__name__
125
+ # Handle Strawberry types that don't have __name__
126
+ if hasattr(type_, "of_type") and hasattr(type_.of_type, "__name__"):
127
+ # For StrawberryList, StrawberryOptional, etc.
128
+ return (
129
+ f"list[{type_.of_type.__name__}]"
130
+ if "List" in str(type_.__class__)
131
+ else type_.of_type.__name__
132
+ )
133
+ return str(type_)
134
+
135
+
136
+ __all__ = ["MaybeNullValidationRule"]
@@ -191,10 +191,24 @@ def convert_argument(
191
191
  from strawberry.relay.types import GlobalID
192
192
 
193
193
  # TODO: move this somewhere else and make it first class
194
- if isinstance(type_, StrawberryOptional):
194
+ # Handle StrawberryMaybe first, since it extends StrawberryOptional
195
+ if isinstance(type_, StrawberryMaybe):
196
+ # Check if this is Maybe[T | None] (has StrawberryOptional as of_type)
197
+ if isinstance(type_.of_type, StrawberryOptional):
198
+ # This is Maybe[T | None] - allows null values
199
+ res = convert_argument(value, type_.of_type, scalar_registry, config)
200
+
201
+ return Some(res)
202
+
203
+ # This is Maybe[T] - validation for null values is handled by MaybeNullValidationRule
204
+ # Convert the value and wrap in Some()
195
205
  res = convert_argument(value, type_.of_type, scalar_registry, config)
196
206
 
197
- return Some(res) if isinstance(type_, StrawberryMaybe) else res
207
+ return Some(res)
208
+
209
+ # Handle regular StrawberryOptional (not Maybe)
210
+ if isinstance(type_, StrawberryOptional):
211
+ return convert_argument(value, type_.of_type, scalar_registry, config)
198
212
 
199
213
  if value is None:
200
214
  return None
strawberry/types/maybe.py CHANGED
@@ -31,7 +31,7 @@ class Some(Generic[T]):
31
31
 
32
32
 
33
33
  if TYPE_CHECKING:
34
- Maybe: TypeAlias = Union[Some[Union[T, None]], None]
34
+ Maybe: TypeAlias = Union[Some[T], None]
35
35
  else:
36
36
  # we do this trick so we can inspect that at runtime
37
37
  class Maybe(Generic[T]): ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: strawberry-graphql
3
- Version: 0.278.1
3
+ Version: 0.279.0
4
4
  Summary: A library for creating GraphQL APIs
5
5
  License: MIT
6
6
  Keywords: graphql,api,rest,starlette,async
@@ -25,7 +25,7 @@ strawberry/cli/commands/export_schema.py,sha256=pyp_Q3BiO7lFH0L3mNPvr7UF8hlhcoUP
25
25
  strawberry/cli/commands/locate_definition.py,sha256=aJJ_KeAnV-c8zTdWIhzcHUilUmCpqsmrVy24qHbyWKk,1001
26
26
  strawberry/cli/commands/schema_codegen.py,sha256=G6eV08a51sjVxCm3jn75oPn9hC8YarKiAKOY5bpTuKU,749
27
27
  strawberry/cli/commands/server.py,sha256=qj5wn22HvyJDzwnWzduIWRnS912XvD7GRhPGJkbLaz4,2217
28
- strawberry/cli/commands/upgrade/__init__.py,sha256=nY_Cj4yOj3CVdzEPWMAgof-dIr804sEJ-cCVOfI6UWo,2480
28
+ strawberry/cli/commands/upgrade/__init__.py,sha256=yj7OxtXhvYdV-P072VFrLnbQmtREnYMLn7iku8gap6k,2596
29
29
  strawberry/cli/commands/upgrade/_fake_progress.py,sha256=fefLgJwTXe4kG9RntdEJdzkPPRBK_pZqnmMH-pxD85Y,484
30
30
  strawberry/cli/commands/upgrade/_run_codemod.py,sha256=LZd5D1PP65bwVZjBvPPVrZ9t-bfvrafZ__HPBrW2WYA,2168
31
31
  strawberry/cli/constants.py,sha256=GhhDZOl9lN4glq50OI1oSbPSGqQXEarZ6r_Grq8pcpI,138
@@ -40,8 +40,9 @@ strawberry/codegen/plugins/python.py,sha256=GgwxTGd16LPKxGuZBohJYWsarKjWfZY1-aGI
40
40
  strawberry/codegen/plugins/typescript.py,sha256=LFEK2ZLz4tUukkwZvUTXhsi_cVca3ybsLaatsW5JA5g,3865
41
41
  strawberry/codegen/query_codegen.py,sha256=F5z-6qK5KcagagBcZvnjx6iIvdJol17DsBQt7TqhCH4,30539
42
42
  strawberry/codegen/types.py,sha256=K5sjzNWDefOzdGtPumXyLuhnlEtd0zZXdPkF15lejk0,4181
43
- strawberry/codemods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ strawberry/codemods/__init__.py,sha256=iXL0fq_VMhmSN3NFkQC4IwQn3pscfES61icODcJAjeo,268
44
44
  strawberry/codemods/annotated_unions.py,sha256=T0KqJEmoOdOXVCOHI1G6ECvEVL2tzIRBenysrz3EhPQ,5988
45
+ strawberry/codemods/maybe_optional.py,sha256=PnFbh4kax7UMrsMOsqMF55Q3NN6jMPMxfs_25KmlB_A,4401
45
46
  strawberry/codemods/update_imports.py,sha256=4n1m-mxVK7h4FnkrpWgxOOCswIqy9SisApWbh-oSZ3E,4622
46
47
  strawberry/dataloader.py,sha256=W4wC-qKrljeKZKH8OgEoGDN_M8aIyhCBLA6g7x04vRQ,7867
47
48
  strawberry/directive.py,sha256=GFFUJSuvvr8BV7gRa1XveYIeekuuxlauCpYA9GJonlE,3584
@@ -172,13 +173,14 @@ strawberry/schema/compat.py,sha256=xNpOEDfi-MODpplMGaKuKeQIVcr-tcAaKaU3TlBc1Zs,1
172
173
  strawberry/schema/config.py,sha256=bkEMn0EkBRg2Tl6ZZH5hpOGBNiAw9QcOclt5dI_Yd1g,1217
173
174
  strawberry/schema/exceptions.py,sha256=8gsMxxFDynMvRkUDuVL9Wwxk_zsmo6QoJ2l4NPxd64M,1137
174
175
  strawberry/schema/name_converter.py,sha256=JG5JKLr9wp8BMJIvG3_bVkwFdoLGbknNR1Bt75urXN0,6950
175
- strawberry/schema/schema.py,sha256=EZ6YLV5wqHrjxi3rVJ0HvbGeIlZrbSOZqEomKlu4-OY,39433
176
- strawberry/schema/schema_converter.py,sha256=ZGkZjLsqjZ-0y5NItsECHZbOOhjJioYRT6YROwmo4Gg,40125
176
+ strawberry/schema/schema.py,sha256=Tg-_hC2ri0ibM-gncOEsLkTmt5T3HM6UsetfYPa1t4M,39548
177
+ strawberry/schema/schema_converter.py,sha256=pxp2cz5ZWQV7k_FPWKHXOHpvgR_5aXAFQuCluNhWwvQ,40566
177
178
  strawberry/schema/types/__init__.py,sha256=oHO3COWhL3L1KLYCJNY1XFf5xt2GGtHiMC-UaYbFfnA,68
178
179
  strawberry/schema/types/base_scalars.py,sha256=JRUq0WjEkR9dFewstZnqnZKp0uOEipo4UXNF5dzRf4M,1971
179
180
  strawberry/schema/types/concrete_type.py,sha256=axIyFZgdwNv-XYkiqX67464wuFX6Vp0jYATwnBZSUvM,750
180
181
  strawberry/schema/types/scalar.py,sha256=bg9AumdmYUBuvaKoEZtP9YKJ7lwMtDMCWFTsZQwpdQY,2375
181
182
  strawberry/schema/validation_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ strawberry/schema/validation_rules/maybe_null.py,sha256=RrIq1yV5_2YxIYN7jx8AaY6O_pqxKtylbM1IygFz5z4,5624
182
184
  strawberry/schema/validation_rules/one_of.py,sha256=fPuYzCyLT7p9y7dHF_sWTImArTQaEhyF664lZijB1Gw,2629
183
185
  strawberry/schema_codegen/__init__.py,sha256=mN4Qmu5Iakht6nHpRpt9hCs8e--oTPlVtDJZJpzgHR4,24364
184
186
  strawberry/schema_directive.py,sha256=CbjdX54EIeWGkJu4SgiLR8mph5_8wyNsgJk2oLoQK_0,2023
@@ -201,7 +203,7 @@ strawberry/tools/__init__.py,sha256=pdGpZx8wpq03VfUZJyF9JtYxZhGqzzxCiipsalWxJX4,
201
203
  strawberry/tools/create_type.py,sha256=y10LgJnWDFtZB-xHLqpVg5ySqvz5KSFC6PNflogie1Q,2329
202
204
  strawberry/tools/merge_types.py,sha256=hUMRRNM28FyPp70jRA3d4svv9WoEBjaNpihBt3DaY0I,1023
203
205
  strawberry/types/__init__.py,sha256=baWEdDkkmCcITOhkg2hNUOenrNV1OYdxGE5qgvIRwwU,351
204
- strawberry/types/arguments.py,sha256=Qe3bpKjJWsrN7Qh9kOr0ZjrwDVc_nb2VFWqL22XJ4II,11129
206
+ strawberry/types/arguments.py,sha256=5Rw_gAVEw1tkBQJuzeYUahAqMGoZU7JwUf4zAME2vqg,11779
205
207
  strawberry/types/auto.py,sha256=WZ2cQAI8nREUigBzpzFqIKGjJ_C2VqpAPNe8vPjTciM,3007
206
208
  strawberry/types/base.py,sha256=Bfa-5Wen8qR7m6tlSMRRGlGE-chRGMHjQMopfNdbbrk,15197
207
209
  strawberry/types/cast.py,sha256=fx86MkLW77GIximBAwUk5vZxSGwDqUA6XicXvz8EXwQ,916
@@ -213,7 +215,7 @@ strawberry/types/fields/resolver.py,sha256=b6lxfw6AMOUFWm7vs7a9KzNkpR8b_S110DoIo
213
215
  strawberry/types/graphql.py,sha256=gXKzawwKiow7hvoJhq5ApNJOMUCnKmvTiHaKY5CK1Lw,867
214
216
  strawberry/types/info.py,sha256=V3DQMd97tkWSdPIhp7HcelQ2h94-HSCI5zJ7cRO7i58,4907
215
217
  strawberry/types/lazy_type.py,sha256=dlP9VcMjZc9sdgriiQGzOZa0TToB6Ee7zpIP8h7TLC0,5079
216
- strawberry/types/maybe.py,sha256=Zdv4pAJwgUmaFNU8WKlwjk50qwgYEzT90WteURZBzAo,1174
218
+ strawberry/types/maybe.py,sha256=3TEY0S2qT_unEdYlPUW50HBuOIIaploZVy3JWpXdeeE,1161
217
219
  strawberry/types/mutation.py,sha256=cg-_O2WWnZ-GSwOIv0toSdxlGeY2lhBBxZ24AifJuSM,11978
218
220
  strawberry/types/nodes.py,sha256=RwZB43OT9BS3Cqjgq4AazqOfyq_y0GD2ysC86EDBv5U,5134
219
221
  strawberry/types/object_type.py,sha256=SdJF2RWDIrh0C99rEW64rbxMaLokG-J8NLybSqkUrcE,15766
@@ -236,8 +238,8 @@ strawberry/utils/logging.py,sha256=U1cseHGquN09YFhFmRkiphfASKCyK0HUZREImPgVb0c,7
236
238
  strawberry/utils/operation.py,sha256=ZgVOw3K2jQuLjNOYUHauF7itJD0QDNoPw9PBi0IYf6k,1234
237
239
  strawberry/utils/str_converters.py,sha256=-eH1Cl16IO_wrBlsGM-km4IY0IKsjhjnSNGRGOwQjVM,897
238
240
  strawberry/utils/typing.py,sha256=SDvX-Du-9HAV3-XXjqi7Q5f5qPDDFd_gASIITiwBQT4,14073
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,,
241
+ strawberry_graphql-0.279.0.dist-info/LICENSE,sha256=m-XnIVUKqlG_AWnfi9NReh9JfKhYOB-gJfKE45WM1W8,1072
242
+ strawberry_graphql-0.279.0.dist-info/METADATA,sha256=NJmXqmdIsIc9ea2XTmGqBcbNycy2Y1cGljd30GV-KN4,7426
243
+ strawberry_graphql-0.279.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
244
+ strawberry_graphql-0.279.0.dist-info/entry_points.txt,sha256=Nk7-aT3_uEwCgyqtHESV9H6Mc31cK-VAvhnQNTzTb4k,49
245
+ strawberry_graphql-0.279.0.dist-info/RECORD,,