strawberry-graphql 0.266.0__tar.gz → 0.266.1__tar.gz
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_graphql-0.266.0 → strawberry_graphql-0.266.1}/PKG-INFO +1 -1
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/pyproject.toml +1 -1
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/__init__.py +3 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/annotation.py +10 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/schema_converter.py +8 -3
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/arguments.py +13 -4
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/base.py +10 -1
- strawberry_graphql-0.266.1/strawberry/types/maybe.py +47 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/object_type.py +12 -1
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/LICENSE +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/README.md +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/__main__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/aiohttp/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/aiohttp/test/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/aiohttp/test/client.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/aiohttp/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/asgi/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/asgi/test/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/asgi/test/client.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/chalice/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/chalice/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/base.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/http_handler.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/ws_handler.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/router.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/testing.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/app.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/codegen.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/export_schema.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/schema_codegen.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/server.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/upgrade/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/upgrade/_fake_progress.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/upgrade/_run_codemod.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/constants.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/debug_server.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/utils/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/utils/load_schema.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/exceptions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/print_operation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/python.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/typescript.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/query_codegen.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codemods/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codemods/annotated_unions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codemods/update_imports.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/dataloader.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/directive.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/apps.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/context.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/test/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/test/client.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/conflicting_arguments.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/duplicated_type_name.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/exception.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/exception_source.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/handler.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/invalid_argument_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/invalid_union_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/missing_arguments_annotations.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/missing_dependencies.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/missing_field_annotation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/missing_return_annotation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/object_is_not_a_class.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/object_is_not_an_enum.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/permission_fail_silently_requires_optional.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/private_strawberry_field.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/scalar_already_registered.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/syntax.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/unresolved_field_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/utils/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/utils/source_finder.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/_compat.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/conversion.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/conversion_types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/error_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/exceptions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/fields.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/object_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/LICENSE +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/LICENSE +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/dataclasses.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/mypy_plugin.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/add_validation_rules.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/base_extension.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/context.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/directives.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/disable_validation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/field_extension.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/mask_errors.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/max_aliases.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/max_tokens.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/parser_cache.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/pyinstrument.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/query_depth_limiter.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/runner.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/apollo.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/datadog.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/opentelemetry.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/validation_cache.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/fastapi/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/fastapi/context.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/fastapi/router.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/argument.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/enum.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/field.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/mutation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/object_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/scalar.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/schema.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/schema_directive.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/schema_directives.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/union.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/field_extensions/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/field_extensions/input_mutation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/file_uploads/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/file_uploads/scalars.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/file_uploads/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/flask/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/flask/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/async_base_view.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/base.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/exceptions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/ides.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/parse_content_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/sync_base_view.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/temporal_response.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/typevars.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/litestar/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/litestar/controller.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/parent.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/permission.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/printer/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/printer/ast_from_value.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/printer/printer.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/py.typed +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/quart/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/quart/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/relay/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/relay/exceptions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/relay/fields.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/relay/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/relay/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/resolvers.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/sanic/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/sanic/context.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/sanic/utils.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/sanic/views.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/scalars.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/base.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/compat.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/config.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/exceptions.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/name_converter.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/schema.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/types/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/types/base_scalars.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/types/concrete_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/types/scalar.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/validation_rules/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/validation_rules/one_of.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema_codegen/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema_directive.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema_directives.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/static/apollo-sandbox.html +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/static/graphiql.html +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/static/pathfinder.html +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_transport_ws/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_transport_ws/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_ws/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_ws/handlers.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/subscriptions/protocols/graphql_ws/types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/test/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/test/client.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/tools/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/tools/create_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/tools/merge_types.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/auto.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/cast.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/enum.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/execution.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/field.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/fields/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/fields/resolver.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/graphql.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/info.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/lazy_type.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/mutation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/nodes.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/private.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/scalar.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/type_resolver.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/union.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/types/unset.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/__init__.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/aio.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/await_maybe.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/dataclasses.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/debug.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/deprecations.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/graphql_lexer.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/importer.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/inspect.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/logging.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/operation.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/str_converters.py +0 -0
- {strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/utils/typing.py +0 -0
@@ -18,6 +18,7 @@ from .types.enum import enum, enum_value
|
|
18
18
|
from .types.field import field
|
19
19
|
from .types.info import Info
|
20
20
|
from .types.lazy_type import LazyType, lazy
|
21
|
+
from .types.maybe import Maybe, Some
|
21
22
|
from .types.mutation import mutation, subscription
|
22
23
|
from .types.object_type import asdict, input, interface, type # noqa: A004
|
23
24
|
from .types.private import Private
|
@@ -31,9 +32,11 @@ __all__ = [
|
|
31
32
|
"BasePermission",
|
32
33
|
"Info",
|
33
34
|
"LazyType",
|
35
|
+
"Maybe",
|
34
36
|
"Parent",
|
35
37
|
"Private",
|
36
38
|
"Schema",
|
39
|
+
"Some",
|
37
40
|
"argument",
|
38
41
|
"asdict",
|
39
42
|
"auto",
|
@@ -19,6 +19,7 @@ from typing_extensions import Self, get_args, get_origin
|
|
19
19
|
|
20
20
|
from strawberry.types.base import (
|
21
21
|
StrawberryList,
|
22
|
+
StrawberryMaybe,
|
22
23
|
StrawberryObjectDefinition,
|
23
24
|
StrawberryOptional,
|
24
25
|
StrawberryTypeVar,
|
@@ -28,6 +29,7 @@ from strawberry.types.base import (
|
|
28
29
|
from strawberry.types.enum import EnumDefinition
|
29
30
|
from strawberry.types.enum import enum as strawberry_enum
|
30
31
|
from strawberry.types.lazy_type import LazyType
|
32
|
+
from strawberry.types.maybe import _annotation_is_maybe
|
31
33
|
from strawberry.types.private import is_private
|
32
34
|
from strawberry.types.scalar import ScalarDefinition
|
33
35
|
from strawberry.types.unset import UNSET
|
@@ -143,6 +145,10 @@ class StrawberryAnnotation:
|
|
143
145
|
return evaled_type
|
144
146
|
if self._is_list(evaled_type):
|
145
147
|
return self.create_list(evaled_type)
|
148
|
+
if type_of := self._get_maybe_type(evaled_type):
|
149
|
+
return StrawberryMaybe(
|
150
|
+
of_type=type_of,
|
151
|
+
)
|
146
152
|
|
147
153
|
if self._is_graphql_generic(evaled_type):
|
148
154
|
if any(is_type_var(type_) for type_ in get_args(evaled_type)):
|
@@ -313,6 +319,10 @@ class StrawberryAnnotation:
|
|
313
319
|
or is_list
|
314
320
|
)
|
315
321
|
|
322
|
+
@classmethod
|
323
|
+
def _get_maybe_type(cls, annotation: Any) -> type | None:
|
324
|
+
return get_args(annotation)[0] if _annotation_is_maybe(annotation) else None
|
325
|
+
|
316
326
|
@classmethod
|
317
327
|
def _is_strawberry_type(cls, evaled_type: Any) -> bool:
|
318
328
|
# Prevent import cycles
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/schema/schema_converter.py
RENAMED
@@ -52,6 +52,7 @@ from strawberry.schema.types.scalar import _make_scalar_type
|
|
52
52
|
from strawberry.types.arguments import StrawberryArgument, convert_arguments
|
53
53
|
from strawberry.types.base import (
|
54
54
|
StrawberryList,
|
55
|
+
StrawberryMaybe,
|
55
56
|
StrawberryObjectDefinition,
|
56
57
|
StrawberryOptional,
|
57
58
|
StrawberryType,
|
@@ -254,7 +255,10 @@ class GraphQLCoreConverter:
|
|
254
255
|
argument_type = cast(
|
255
256
|
"GraphQLInputType", self.from_maybe_optional(argument.type)
|
256
257
|
)
|
257
|
-
|
258
|
+
if argument.is_maybe:
|
259
|
+
default_value: Any = Undefined
|
260
|
+
else:
|
261
|
+
default_value = Undefined if argument.default is UNSET else argument.default
|
258
262
|
|
259
263
|
return GraphQLArgument(
|
260
264
|
type_=argument_type,
|
@@ -419,8 +423,9 @@ class GraphQLCoreConverter:
|
|
419
423
|
),
|
420
424
|
)
|
421
425
|
default_value: object
|
422
|
-
|
423
|
-
|
426
|
+
if isinstance(field.type, StrawberryMaybe):
|
427
|
+
default_value = Undefined
|
428
|
+
elif field.default_value is UNSET or field.default_value is dataclasses.MISSING:
|
424
429
|
default_value = Undefined
|
425
430
|
else:
|
426
431
|
default_value = field.default_value
|
@@ -17,13 +17,17 @@ from strawberry.exceptions import MultipleStrawberryArgumentsError, UnsupportedT
|
|
17
17
|
from strawberry.scalars import is_scalar
|
18
18
|
from strawberry.types.base import (
|
19
19
|
StrawberryList,
|
20
|
+
StrawberryMaybe,
|
20
21
|
StrawberryOptional,
|
21
22
|
has_object_definition,
|
22
23
|
)
|
23
24
|
from strawberry.types.enum import EnumDefinition
|
24
25
|
from strawberry.types.lazy_type import LazyType, StrawberryLazyReference
|
26
|
+
from strawberry.types.maybe import Some
|
25
27
|
from strawberry.types.unset import UNSET as _deprecated_UNSET # noqa: N811
|
26
|
-
from strawberry.types.unset import
|
28
|
+
from strawberry.types.unset import (
|
29
|
+
_deprecated_is_unset, # noqa: F401
|
30
|
+
)
|
27
31
|
|
28
32
|
if TYPE_CHECKING:
|
29
33
|
from collections.abc import Iterable, Mapping
|
@@ -135,6 +139,10 @@ class StrawberryArgument:
|
|
135
139
|
|
136
140
|
return is_graphql_generic(self.type)
|
137
141
|
|
142
|
+
@property
|
143
|
+
def is_maybe(self) -> bool:
|
144
|
+
return isinstance(self.type, StrawberryMaybe)
|
145
|
+
|
138
146
|
|
139
147
|
def convert_argument(
|
140
148
|
value: object,
|
@@ -143,6 +151,10 @@ def convert_argument(
|
|
143
151
|
config: StrawberryConfig,
|
144
152
|
) -> object:
|
145
153
|
# TODO: move this somewhere else and make it first class
|
154
|
+
if isinstance(type_, StrawberryOptional):
|
155
|
+
res = convert_argument(value, type_.of_type, scalar_registry, config)
|
156
|
+
|
157
|
+
return Some(res) if isinstance(type_, StrawberryMaybe) else res
|
146
158
|
|
147
159
|
if value is None:
|
148
160
|
return None
|
@@ -150,9 +162,6 @@ def convert_argument(
|
|
150
162
|
if value is _deprecated_UNSET:
|
151
163
|
return _deprecated_UNSET
|
152
164
|
|
153
|
-
if isinstance(type_, StrawberryOptional):
|
154
|
-
return convert_argument(value, type_.of_type, scalar_registry, config)
|
155
|
-
|
156
165
|
if isinstance(type_, StrawberryList):
|
157
166
|
value_list = cast("Iterable", value)
|
158
167
|
return [
|
@@ -152,7 +152,16 @@ class StrawberryContainer(StrawberryType):
|
|
152
152
|
class StrawberryList(StrawberryContainer): ...
|
153
153
|
|
154
154
|
|
155
|
-
class StrawberryOptional(StrawberryContainer):
|
155
|
+
class StrawberryOptional(StrawberryContainer):
|
156
|
+
def __init__(
|
157
|
+
self,
|
158
|
+
of_type: Union[StrawberryType, type[WithStrawberryObjectDefinition], type],
|
159
|
+
) -> None:
|
160
|
+
super().__init__(of_type)
|
161
|
+
|
162
|
+
|
163
|
+
class StrawberryMaybe(StrawberryOptional):
|
164
|
+
pass
|
156
165
|
|
157
166
|
|
158
167
|
class StrawberryTypeVar(StrawberryType):
|
@@ -0,0 +1,47 @@
|
|
1
|
+
import typing
|
2
|
+
from typing import TYPE_CHECKING, Any, Generic, TypeVar, Union
|
3
|
+
from typing_extensions import TypeAlias
|
4
|
+
|
5
|
+
T = TypeVar("T")
|
6
|
+
|
7
|
+
|
8
|
+
class Some(Generic[T]):
|
9
|
+
"""A special value that can be used to represent an unset value in a field or argument.
|
10
|
+
|
11
|
+
Similar to `undefined` in JavaScript, this value can be used to differentiate between
|
12
|
+
a field that was not set and a field that was set to `None` or `null`.
|
13
|
+
"""
|
14
|
+
|
15
|
+
__slots__ = ("value",)
|
16
|
+
|
17
|
+
def __init__(self, value: T) -> None:
|
18
|
+
self.value = value
|
19
|
+
|
20
|
+
def __repr__(self) -> str:
|
21
|
+
return f"Some({self.value!r})"
|
22
|
+
|
23
|
+
def __eq__(self, other: object) -> bool:
|
24
|
+
return self.value == other.value if isinstance(other, Some) else False
|
25
|
+
|
26
|
+
def __hash__(self) -> int:
|
27
|
+
return hash(self.value)
|
28
|
+
|
29
|
+
def __bool__(self) -> bool:
|
30
|
+
return True
|
31
|
+
|
32
|
+
|
33
|
+
if TYPE_CHECKING:
|
34
|
+
Maybe: TypeAlias = Union[Some[Union[T, None]], None]
|
35
|
+
else:
|
36
|
+
# we do this trick so we can inspect that at runtime
|
37
|
+
class Maybe(Generic[T]): ...
|
38
|
+
|
39
|
+
|
40
|
+
def _annotation_is_maybe(annotation: Any) -> bool:
|
41
|
+
return (orig := typing.get_origin(annotation)) and orig is Maybe
|
42
|
+
|
43
|
+
|
44
|
+
__all__ = [
|
45
|
+
"Maybe",
|
46
|
+
"Some",
|
47
|
+
]
|
@@ -20,6 +20,7 @@ from strawberry.exceptions import (
|
|
20
20
|
ObjectIsNotClassError,
|
21
21
|
)
|
22
22
|
from strawberry.types.base import get_object_definition
|
23
|
+
from strawberry.types.maybe import _annotation_is_maybe
|
23
24
|
from strawberry.utils.deprecations import DEPRECATION_MESSAGES, DeprecatedDescriptor
|
24
25
|
from strawberry.utils.str_converters import to_camel_case
|
25
26
|
|
@@ -122,6 +123,15 @@ def _wrap_dataclass(cls: builtins.type[T]) -> builtins.type[T]:
|
|
122
123
|
return dclass
|
123
124
|
|
124
125
|
|
126
|
+
def _inject_default_for_maybe_annotations(
|
127
|
+
cls: builtins.type[T], annotations: dict[str, Any]
|
128
|
+
) -> None:
|
129
|
+
"""Inject `= None` for fields with `Maybe` annotations and no default value."""
|
130
|
+
for name, annotation in annotations.copy().items():
|
131
|
+
if _annotation_is_maybe(annotation) and not hasattr(cls, name):
|
132
|
+
setattr(cls, name, None)
|
133
|
+
|
134
|
+
|
125
135
|
def _process_type(
|
126
136
|
cls: T,
|
127
137
|
*,
|
@@ -286,7 +296,8 @@ def type(
|
|
286
296
|
|
287
297
|
if field and isinstance(field, StrawberryField) and field.type_annotation:
|
288
298
|
original_type_annotations[field_name] = field.type_annotation.annotation
|
289
|
-
|
299
|
+
if is_input:
|
300
|
+
_inject_default_for_maybe_annotations(cls, annotations)
|
290
301
|
wrapped = _wrap_dataclass(cls)
|
291
302
|
|
292
303
|
return _process_type( # type: ignore
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/aiohttp/test/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/__init__.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/base.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/channels/handlers/ws_handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/__init__.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/codegen.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/export_schema.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/commands/schema_codegen.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/cli/utils/load_schema.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/__init__.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/python.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/plugins/typescript.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codegen/query_codegen.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codemods/annotated_unions.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/codemods/update_imports.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/django/test/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/exception.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/exception_source.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/exceptions/utils/__init__.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/fields.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/experimental/pydantic/utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/LICENSE
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/__init__.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/ext/dataclasses/dataclasses.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/base_extension.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/directives.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/field_extension.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/mask_errors.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/max_aliases.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/max_tokens.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/parser_cache.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/pyinstrument.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/__init__.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/apollo.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/datadog.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/tracing/utils.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/extensions/validation_cache.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/object_type.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/schema_directive.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/federation/schema_directives.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/field_extensions/__init__.py
RENAMED
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/file_uploads/__init__.py
RENAMED
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/file_uploads/scalars.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strawberry_graphql-0.266.0 → strawberry_graphql-0.266.1}/strawberry/http/async_base_view.py
RENAMED
File without changes
|
File without changes
|
File without changes
|