├── .alexignore ├── .alexrc ├── .codecov.yml ├── .coveragerc ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── post-install.sh ├── .dockerignore ├── .editorconfig ├── .github ├── bot-action │ ├── Dockerfile │ ├── action.yml │ └── main.py ├── dependabot.yml ├── logo.png ├── pyproject.toml ├── release-check-action │ ├── Dockerfile │ ├── action.yml │ ├── check.py │ ├── config.py │ └── release.py └── workflows │ ├── codeflash.yaml │ ├── codeql-analysis.yml │ ├── e2e-tests.yml │ ├── federation-compatibility.yml │ ├── invite-contributors.yml │ ├── issue-manager.yml │ ├── ok-to-preview.yml │ ├── pre-release-pr.yml │ ├── release-check.yml │ ├── release.yml │ ├── slash-commands.yml │ └── test.yml ├── .gitignore ├── .gitpod.yml ├── .pre-commit-config.yaml ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── README.md ├── _test.md ├── breaking-changes.md ├── breaking-changes │ ├── 0.146.0.md │ ├── 0.159.0.md │ ├── 0.169.0.md │ ├── 0.180.0.md │ ├── 0.213.0.md │ ├── 0.217.0.md │ ├── 0.233.0.md │ ├── 0.236.0.md │ ├── 0.240.0.md │ ├── 0.243.0.md │ ├── 0.249.0.md │ ├── 0.251.0.md │ ├── 0.268.0.md │ ├── 0.278.1.md │ ├── 0.279.0.md │ ├── 0.283.0.md │ └── 0.285.0.md ├── cli │ └── locate-definition.md ├── codegen │ ├── query-codegen.md │ └── schema-codegen.md ├── concepts │ ├── async.md │ └── typings.md ├── editors │ ├── mypy.md │ ├── pylance.png │ └── vscode.md ├── errors.md ├── errors │ ├── _template.md │ ├── conflicting-arguments.md │ ├── duplicated-type-name.md │ ├── invalid-argument-type.md │ ├── invalid-superclass-interface.md │ ├── invalid-type-for-union-merge.md │ ├── invalid-union-type.md │ ├── missing-arguments-annotations.md │ ├── missing-field-annotation.md │ ├── missing-return-annotation.md │ ├── node-id-annotation.md │ ├── object-is-not-an-enum.md │ ├── object-is-not-class.md │ ├── permission-fail-silently-requires-optional.md │ ├── private-strawberry-field.md │ ├── relay-wrong-annotation.md │ ├── relay-wrong-resolver-annotation.md │ ├── scalar-already-registered.md │ ├── unresolved-field-type.md │ └── unsupported-type.md ├── extensions.md ├── extensions │ ├── _template.md │ ├── add-validation-rules.md │ ├── apollo-tracing.md │ ├── datadog.md │ ├── disable-introspection.md │ ├── disable-validation.md │ ├── input-mutation.md │ ├── mask-errors.md │ ├── max-aliases-limiter.md │ ├── max-tokens-limiter.md │ ├── opentelemetry.md │ ├── parser-cache.md │ ├── pyinstrument.md │ ├── query-depth-limiter.md │ ├── sentry-tracing.md │ └── validation-cache.md ├── faq.md ├── federation │ ├── custom_directives.md │ ├── entities.md │ ├── entity-interfaces.md │ └── introduction.md ├── general │ ├── multipart-subscriptions.md │ ├── mutations.md │ ├── queries.md │ ├── schema-basics.md │ ├── subscriptions.md │ └── upgrades.md ├── guides │ ├── accessing-parent-data.md │ ├── authentication.md │ ├── convert-to-dictionary.md │ ├── custom-extensions.md │ ├── dataloaders.md │ ├── errors.md │ ├── federation-v1.md │ ├── federation.md │ ├── field-extensions.md │ ├── file-upload.md │ ├── pagination │ │ ├── connections.md │ │ ├── cursor-based.md │ │ ├── offset-based.md │ │ └── overview.md │ ├── permissions.md │ ├── query-batching.md │ ├── relay.md │ ├── schema-export.md │ ├── server.md │ └── tools.md ├── images │ ├── index-query-example.png │ ├── index-server.png │ └── subscriptions-count-websocket.png ├── index.md ├── integrations │ ├── aiohttp.md │ ├── asgi.md │ ├── chalice.md │ ├── channels.md │ ├── creating-an-integration.md │ ├── django.md │ ├── fastapi.md │ ├── flask.md │ ├── index.md │ ├── litestar.md │ ├── pydantic.md │ ├── quart.md │ ├── sanic.md │ └── starlette.md ├── operations │ ├── deployment.md │ ├── testing.md │ └── tracing.md └── types │ ├── defer-and-stream.md │ ├── enums.md │ ├── exceptions.md │ ├── generics.md │ ├── input-types.md │ ├── interfaces.md │ ├── lazy.md │ ├── maybe.md │ ├── object-types.md │ ├── operation-directives.md │ ├── private.md │ ├── resolvers.md │ ├── scalars.md │ ├── schema-configurations.md │ ├── schema-directives.md │ ├── schema.md │ └── union.md ├── e2e ├── .gitattributes ├── .gitignore ├── app.py ├── app.ts ├── bun.lock ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── playwright.config.ts ├── relay.config.json ├── src │ ├── App.tsx │ ├── RelayEnvironment.ts │ ├── components │ │ ├── __generated__ │ │ │ ├── relayTestsBlogPostQuery.graphql.ts │ │ │ ├── relayTestsCommentsFragment.graphql.ts │ │ │ └── relayTestsHelloQuery.graphql.ts │ │ ├── apollo-tests.tsx │ │ ├── relay-tests.tsx │ │ └── ui │ │ │ └── button.tsx │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── schema.graphql │ ├── tests │ │ └── graphql-clients.spec.ts │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── federation-compatibility ├── Dockerfile ├── docker-compose.yml └── schema.py ├── mypy.ini ├── noxfile.py ├── poetry.lock ├── pyproject.toml ├── setup.py ├── strawberry ├── __init__.py ├── __main__.py ├── aiohttp │ ├── __init__.py │ ├── test │ │ ├── __init__.py │ │ └── client.py │ └── views.py ├── annotation.py ├── asgi │ ├── __init__.py │ └── test │ │ ├── __init__.py │ │ └── client.py ├── chalice │ ├── __init__.py │ └── views.py ├── channels │ ├── __init__.py │ ├── handlers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── http_handler.py │ │ └── ws_handler.py │ ├── router.py │ └── testing.py ├── cli │ ├── __init__.py │ ├── app.py │ ├── commands │ │ ├── __init__.py │ │ ├── codegen.py │ │ ├── dev.py │ │ ├── export_schema.py │ │ ├── locate_definition.py │ │ ├── schema_codegen.py │ │ ├── server.py │ │ └── upgrade │ │ │ ├── __init__.py │ │ │ ├── _fake_progress.py │ │ │ └── _run_codemod.py │ ├── constants.py │ ├── dev_server.py │ └── utils │ │ ├── __init__.py │ │ └── load_schema.py ├── codegen │ ├── __init__.py │ ├── exceptions.py │ ├── plugins │ │ ├── __init__.py │ │ ├── print_operation.py │ │ ├── python.py │ │ └── typescript.py │ ├── query_codegen.py │ └── types.py ├── codemods │ ├── __init__.py │ ├── annotated_unions.py │ ├── maybe_optional.py │ └── update_imports.py ├── dataloader.py ├── directive.py ├── django │ ├── __init__.py │ ├── apps.py │ ├── context.py │ ├── test │ │ ├── __init__.py │ │ └── client.py │ └── views.py ├── exceptions │ ├── __init__.py │ ├── conflicting_arguments.py │ ├── duplicated_type_name.py │ ├── exception.py │ ├── exception_source.py │ ├── handler.py │ ├── invalid_argument_type.py │ ├── invalid_superclass_interface.py │ ├── invalid_union_type.py │ ├── missing_arguments_annotations.py │ ├── missing_dependencies.py │ ├── missing_field_annotation.py │ ├── missing_return_annotation.py │ ├── object_is_not_a_class.py │ ├── object_is_not_an_enum.py │ ├── permission_fail_silently_requires_optional.py │ ├── private_strawberry_field.py │ ├── scalar_already_registered.py │ ├── syntax.py │ ├── unresolved_field_type.py │ └── utils │ │ ├── __init__.py │ │ └── source_finder.py ├── experimental │ ├── __init__.py │ └── pydantic │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── conversion.py │ │ ├── conversion_types.py │ │ ├── error_type.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── object_type.py │ │ └── utils.py ├── ext │ ├── LICENSE │ ├── __init__.py │ ├── dataclasses │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ └── dataclasses.py │ └── mypy_plugin.py ├── extensions │ ├── __init__.py │ ├── add_validation_rules.py │ ├── base_extension.py │ ├── context.py │ ├── directives.py │ ├── disable_introspection.py │ ├── disable_validation.py │ ├── field_extension.py │ ├── mask_errors.py │ ├── max_aliases.py │ ├── max_tokens.py │ ├── parser_cache.py │ ├── pyinstrument.py │ ├── query_depth_limiter.py │ ├── runner.py │ ├── tracing │ │ ├── __init__.py │ │ ├── apollo.py │ │ ├── datadog.py │ │ ├── opentelemetry.py │ │ └── utils.py │ ├── utils.py │ └── validation_cache.py ├── fastapi │ ├── __init__.py │ ├── context.py │ └── router.py ├── federation │ ├── __init__.py │ ├── argument.py │ ├── enum.py │ ├── field.py │ ├── mutation.py │ ├── object_type.py │ ├── scalar.py │ ├── schema.py │ ├── schema_directive.py │ ├── schema_directives.py │ ├── types.py │ ├── union.py │ └── versions.py ├── field_extensions │ ├── __init__.py │ └── input_mutation.py ├── file_uploads │ ├── __init__.py │ ├── scalars.py │ └── utils.py ├── flask │ ├── __init__.py │ └── views.py ├── http │ ├── __init__.py │ ├── async_base_view.py │ ├── base.py │ ├── exceptions.py │ ├── ides.py │ ├── parse_content_type.py │ ├── sync_base_view.py │ ├── temporal_response.py │ ├── types.py │ └── typevars.py ├── litestar │ ├── __init__.py │ └── controller.py ├── parent.py ├── permission.py ├── printer │ ├── __init__.py │ ├── ast_from_value.py │ └── printer.py ├── py.typed ├── quart │ ├── __init__.py │ └── views.py ├── relay │ ├── __init__.py │ ├── exceptions.py │ ├── fields.py │ ├── types.py │ └── utils.py ├── resolvers.py ├── sanic │ ├── __init__.py │ ├── context.py │ ├── utils.py │ └── views.py ├── scalars.py ├── schema │ ├── __init__.py │ ├── _graphql_core.py │ ├── base.py │ ├── compat.py │ ├── config.py │ ├── exceptions.py │ ├── name_converter.py │ ├── schema.py │ ├── schema_converter.py │ ├── types │ │ ├── __init__.py │ │ ├── base_scalars.py │ │ ├── concrete_type.py │ │ └── scalar.py │ └── validation_rules │ │ ├── __init__.py │ │ ├── maybe_null.py │ │ └── one_of.py ├── schema_codegen │ └── __init__.py ├── schema_directive.py ├── schema_directives.py ├── static │ ├── apollo-sandbox.html │ ├── graphiql.html │ └── pathfinder.html ├── streamable.py ├── subscriptions │ ├── __init__.py │ └── protocols │ │ ├── __init__.py │ │ ├── graphql_transport_ws │ │ ├── __init__.py │ │ ├── handlers.py │ │ └── types.py │ │ └── graphql_ws │ │ ├── __init__.py │ │ ├── handlers.py │ │ └── types.py ├── test │ ├── __init__.py │ └── client.py ├── tools │ ├── __init__.py │ ├── create_type.py │ └── merge_types.py ├── types │ ├── __init__.py │ ├── arguments.py │ ├── auto.py │ ├── base.py │ ├── cast.py │ ├── enum.py │ ├── execution.py │ ├── field.py │ ├── fields │ │ ├── __init__.py │ │ └── resolver.py │ ├── graphql.py │ ├── info.py │ ├── lazy_type.py │ ├── maybe.py │ ├── mutation.py │ ├── nodes.py │ ├── object_type.py │ ├── private.py │ ├── scalar.py │ ├── type_resolver.py │ ├── union.py │ └── unset.py └── utils │ ├── __init__.py │ ├── aio.py │ ├── await_maybe.py │ ├── deprecations.py │ ├── importer.py │ ├── inspect.py │ ├── locate_definition.py │ ├── logging.py │ ├── operation.py │ ├── str_converters.py │ └── typing.py └── tests ├── __init__.py ├── a.py ├── asgi ├── __init__.py └── test_async.py ├── b.py ├── benchmarks ├── __init__.py ├── api.py ├── queries │ ├── items.graphql │ ├── many_fields.graphql │ ├── many_fields_directives.graphql │ ├── simple.graphql │ └── stadium.graphql ├── schema.py ├── test_arguments.py ├── test_complex_schema.py ├── test_execute.py ├── test_execute_sync.py ├── test_execute_with_extensions.py ├── test_generic_input.py ├── test_stadium.py └── test_subscriptions.py ├── c.py ├── channels ├── __init__.py ├── test_layers.py ├── test_router.py └── test_testing.py ├── cli ├── __init__.py ├── conftest.py ├── fixtures │ ├── __init__.py │ └── unions.py ├── snapshots │ ├── unions.py │ └── unions_typing_extension.py ├── test_codegen.py ├── test_dev.py ├── test_export_schema.py ├── test_locate_definition.py ├── test_schema_codegen.py ├── test_server.py └── test_upgrade.py ├── codegen ├── __init__.py ├── conftest.py ├── lazy_type.py ├── queries │ ├── alias.graphql │ ├── basic.graphql │ ├── custom_scalar.graphql │ ├── enum.graphql │ ├── fragment.graphql │ ├── generic_types.graphql │ ├── interface.graphql │ ├── interface_fragments.graphql │ ├── interface_fragments_with_spread.graphql │ ├── interface_single_fragment.graphql │ ├── multiple_types.graphql │ ├── multiple_types_optional.graphql │ ├── mutation-fragment.graphql │ ├── mutation.graphql │ ├── mutation_with_object.graphql │ ├── nullable_list_of_non_scalars.graphql │ ├── optional_and_lists.graphql │ ├── union.graphql │ ├── union_return.graphql │ ├── union_with_one_type.graphql │ ├── union_with_typename.graphql │ ├── union_with_typename_and_fragment.graphql │ ├── variables.graphql │ └── with_directives.graphql ├── relay_queries │ ├── relay_alias.graphql │ ├── relay_fragment.graphql │ ├── relay_list.graphql │ ├── relay_nested_nodes.graphql │ ├── relay_node_id.graphql │ └── relay_variables.graphql ├── snapshots │ ├── python │ │ ├── alias.py │ │ ├── basic.py │ │ ├── custom_scalar.py │ │ ├── enum.py │ │ ├── fragment.py │ │ ├── generic_types.py │ │ ├── interface.py │ │ ├── interface_fragments.py │ │ ├── interface_fragments_with_spread.py │ │ ├── interface_single_fragment.py │ │ ├── multiple_types.py │ │ ├── multiple_types_optional.py │ │ ├── mutation-fragment.py │ │ ├── mutation.py │ │ ├── mutation_with_object.py │ │ ├── nullable_list_of_non_scalars.py │ │ ├── optional_and_lists.py │ │ ├── union.py │ │ ├── union_return.py │ │ ├── union_with_one_type.py │ │ ├── union_with_typename.py │ │ ├── union_with_typename_and_fragment.py │ │ ├── variables.py │ │ └── with_directives.py │ ├── relay │ │ ├── python │ │ │ ├── relay_alias.py │ │ │ ├── relay_fragment.py │ │ │ ├── relay_list.py │ │ │ ├── relay_nested_nodes.py │ │ │ ├── relay_node_id.py │ │ │ └── relay_variables.py │ │ └── typescript │ │ │ ├── relay_alias.ts │ │ │ ├── relay_fragment.ts │ │ │ ├── relay_list.ts │ │ │ ├── relay_nested_nodes.ts │ │ │ ├── relay_node_id.ts │ │ │ └── relay_variables.ts │ └── typescript │ │ ├── alias.ts │ │ ├── basic.ts │ │ ├── custom_scalar.ts │ │ ├── enum.ts │ │ ├── fragment.ts │ │ ├── generic_types.ts │ │ ├── interface.ts │ │ ├── interface_fragments.ts │ │ ├── interface_fragments_with_spread.ts │ │ ├── interface_single_fragment.ts │ │ ├── multiple_types.ts │ │ ├── multiple_types_optional.ts │ │ ├── mutation-fragment.ts │ │ ├── mutation.ts │ │ ├── mutation_with_object.ts │ │ ├── nullable_list_of_non_scalars.ts │ │ ├── optional_and_lists.ts │ │ ├── union.ts │ │ ├── union_return.ts │ │ ├── union_with_one_type.ts │ │ ├── union_with_typename.ts │ │ ├── union_with_typename_and_fragment.ts │ │ ├── variables.ts │ │ └── with_directives.ts ├── test_print_operation.py ├── test_query_codegen.py └── test_relay_node_id_codegen.py ├── codemods ├── __init__.py ├── test_annotated_unions.py ├── test_annotated_unions_pipe.py ├── test_imports.py └── test_maybe_optional.py ├── conftest.py ├── d.py ├── django ├── __init__.py ├── app │ ├── __init__.py │ ├── models.py │ └── urls.py ├── conftest.py ├── django_settings.py ├── test_dataloaders.py └── test_extensions.py ├── enums ├── __init__.py └── test_enum.py ├── exceptions ├── __init__.py ├── classes │ ├── __init__.py │ └── test_exception_class_missing_optional_dependencies_error.py ├── test_exception_handler.py ├── test_exception_source.py └── test_threading_exception_handler.py ├── experimental ├── __init__.py └── pydantic │ ├── __init__.py │ ├── schema │ ├── __init__.py │ ├── test_1_and_2.py │ ├── test_basic.py │ ├── test_computed.py │ ├── test_defaults.py │ ├── test_federation.py │ ├── test_forward_reference.py │ └── test_mutation.py │ ├── test_basic.py │ ├── test_conversion.py │ ├── test_error_type.py │ ├── test_fields.py │ └── utils.py ├── extensions ├── __init__.py ├── test_custom_objects_for_setting_attribute.py ├── test_pyinstrument.py └── tracing │ ├── __init__.py │ └── test_opentelemetry.py ├── fastapi ├── __init__.py ├── app.py ├── test_async.py ├── test_context.py ├── test_openapi.py └── test_router.py ├── federation ├── __init__.py ├── printer │ ├── __init__.py │ ├── test_additional_directives.py │ ├── test_authenticated.py │ ├── test_compose_directive.py │ ├── test_entities.py │ ├── test_inaccessible.py │ ├── test_interface.py │ ├── test_interface_object.py │ ├── test_keys.py │ ├── test_link.py │ ├── test_one_of.py │ ├── test_override.py │ ├── test_policy.py │ ├── test_provides.py │ ├── test_requires.py │ ├── test_requires_scopes.py │ ├── test_shareable.py │ └── test_tag.py ├── test_entities.py ├── test_schema.py ├── test_types.py └── test_version_validation.py ├── fields ├── __init__.py ├── test_arguments.py ├── test_field_basics.py ├── test_field_defaults.py ├── test_field_descriptions.py ├── test_field_exceptions.py ├── test_field_names.py ├── test_permissions.py └── test_resolvers.py ├── file_uploads ├── __init__.py └── test_utils.py ├── fixtures ├── __init__.py └── sample_package │ ├── __init__.py │ └── sample_module.py ├── http ├── __init__.py ├── clients │ ├── __init__.py │ ├── aiohttp.py │ ├── asgi.py │ ├── async_django.py │ ├── async_flask.py │ ├── base.py │ ├── chalice.py │ ├── channels.py │ ├── django.py │ ├── fastapi.py │ ├── flask.py │ ├── litestar.py │ ├── quart.py │ └── sanic.py ├── conftest.py ├── context.py ├── incremental │ ├── __init__.py │ ├── conftest.py │ ├── test_defer.py │ ├── test_multipart_subscription.py │ └── test_stream.py ├── test_async_base_view.py ├── test_graphql_ide.py ├── test_graphql_over_http_spec.py ├── test_http.py ├── test_mutation.py ├── test_parse_content_type.py ├── test_process_result.py ├── test_query.py ├── test_query_batching.py ├── test_query_via_get.py └── test_upload.py ├── litestar ├── __init__.py ├── app.py ├── conftest.py ├── test_context.py ├── test_response_headers.py └── test_response_status.py ├── objects ├── __init__.py ├── generics │ ├── __init__.py │ ├── test_generic_objects.py │ └── test_names.py ├── test_inheritance.py ├── test_interfaces.py ├── test_object_instantiation.py └── test_types.py ├── plugins ├── __init__.py └── strawberry_exceptions.py ├── python_312 ├── __init__.py ├── pyproject.toml ├── test_generic_objects.py ├── test_generics_schema.py ├── test_inspect.py └── test_python_generics.py ├── relay ├── __init__.py ├── schema.py ├── schema_future_annotations.py ├── snapshots │ ├── schema.gql │ └── schema_future_annotations.gql ├── test_connection.py ├── test_custom_edge.py ├── test_exceptions.py ├── test_fields.py ├── test_id.py ├── test_schema.py ├── test_types.py └── test_utils.py ├── sanic ├── __init__.py └── test_file_upload.py ├── schema ├── __init__.py ├── extensions │ ├── __init__.py │ ├── schema_extensions │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_defer_extensions.py │ │ ├── test_extensions.py │ │ └── test_subscription.py │ ├── test_apollo.py │ ├── test_datadog.py │ ├── test_disable_introspection.py │ ├── test_field_extensions.py │ ├── test_imports.py │ ├── test_input_mutation.py │ ├── test_input_mutation_federation.py │ ├── test_input_mutation_future.py │ ├── test_mask_errors.py │ ├── test_max_aliases.py │ ├── test_max_tokens.py │ ├── test_opentelemetry.py │ ├── test_parser_cache.py │ ├── test_query_depth_limiter.py │ └── test_validation_cache.py ├── test_annotated │ ├── __init__.py │ ├── type_a.py │ └── type_b.py ├── test_arguments.py ├── test_basic.py ├── test_camel_casing.py ├── test_config.py ├── test_custom_scalar.py ├── test_dataloaders.py ├── test_directives.py ├── test_duplicated_types.py ├── test_enum.py ├── test_execution.py ├── test_execution_errors.py ├── test_extensions.py ├── test_fields.py ├── test_generics.py ├── test_generics_nested.py ├── test_get_extensions.py ├── test_info.py ├── test_input.py ├── test_interface.py ├── test_lazy │ ├── __init__.py │ ├── schema.py │ ├── test_lazy.py │ ├── test_lazy_generic.py │ ├── type_a.py │ ├── type_b.py │ ├── type_c.py │ ├── type_d.py │ └── type_e.py ├── test_lazy_types │ ├── __init__.py │ ├── test_cyclic.py │ ├── test_lazy_enums.py │ ├── test_lazy_unions.py │ ├── type_a.py │ └── type_b.py ├── test_list.py ├── test_maybe.py ├── test_maybe_future_annotations.py ├── test_mutation.py ├── test_name_converter.py ├── test_one_of.py ├── test_permission.py ├── test_private_field.py ├── test_pydantic.py ├── test_resolvers.py ├── test_scalars.py ├── test_schema_generation.py ├── test_schema_hooks.py ├── test_subscription.py ├── test_union.py ├── test_union_deprecated.py ├── test_unresolved_fields.py ├── types │ ├── __init__.py │ ├── test_date.py │ ├── test_datetime.py │ ├── test_decimal.py │ ├── test_time.py │ └── test_uuid.py └── validation_rules │ ├── __init__.py │ └── test_maybe_null.py ├── schema_codegen ├── __init__.py ├── snapshots │ └── long_descriptions.py ├── test_descriptions.py ├── test_enum.py ├── test_federation.py ├── test_input_types.py ├── test_names.py ├── test_order.py ├── test_root_types_extend.py ├── test_scalar.py ├── test_schema.py ├── test_types.py └── test_union.py ├── test ├── __init__.py ├── conftest.py └── test_client.py ├── test_aio.py ├── test_auto.py ├── test_dataloaders.py ├── test_deprecations.py ├── test_forward_references.py ├── test_info.py ├── test_inspect.py ├── test_printer ├── __init__.py ├── test_basic.py ├── test_defer_stream.py ├── test_one_of.py └── test_schema_directives.py ├── test_repr.py ├── test_type.py ├── tools ├── __init__.py ├── test_create_type.py └── test_merge_types.py ├── typecheckers ├── __init__.py ├── test_auto.py ├── test_directives.py ├── test_enum.py ├── test_fastapi.py ├── test_federation.py ├── test_federation_fields.py ├── test_federation_params.py ├── test_fields.py ├── test_fields_input.py ├── test_fields_keyword.py ├── test_fields_resolver.py ├── test_fields_resolver_async.py ├── test_info.py ├── test_interface.py ├── test_maybe.py ├── test_params.py ├── test_private.py ├── test_relay.py ├── test_scalars.py ├── test_type.py ├── test_union.py └── utils │ ├── __init__.py │ ├── marks.py │ ├── mypy.py │ ├── pyright.py │ ├── result.py │ └── typecheck.py ├── types ├── __init__.py ├── cross_module_resolvers │ ├── README.md │ ├── __init__.py │ ├── a_mod.py │ ├── b_mod.py │ ├── c_mod.py │ ├── test_cross_module_resolvers.py │ └── x_mod.py ├── resolving │ ├── __init__.py │ ├── test_enums.py │ ├── test_forward_references.py │ ├── test_generics.py │ ├── test_lists.py │ ├── test_literals.py │ ├── test_optionals.py │ ├── test_string_annotations.py │ ├── test_union_pipe.py │ ├── test_unions.py │ └── test_unions_deprecated.py ├── test_annotation.py ├── test_argument_types.py ├── test_cast.py ├── test_convert_to_dictionary.py ├── test_deferred_annotations.py ├── test_execution.py ├── test_field_types.py ├── test_lazy_types.py ├── test_lazy_types_future_annotations.py ├── test_object_types.py ├── test_parent_type.py ├── test_parent_type_future_annotations.py └── test_resolver_types.py ├── utils ├── __init__.py ├── test_arguments_converter.py ├── test_get_first_operation.py ├── test_get_operation_type.py ├── test_importer.py ├── test_inspect.py ├── test_locate_definition.py ├── test_logging.py ├── test_typing.py └── test_typing_forward_refs.py ├── views ├── __init__.py └── schema.py └── websockets ├── __init__.py ├── conftest.py ├── test_graphql_transport_ws.py ├── test_graphql_ws.py ├── test_websockets.py └── views.py /.alexignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.alexignore -------------------------------------------------------------------------------- /.alexrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.alexrc -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.devcontainer/post-install.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/bot-action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/bot-action/Dockerfile -------------------------------------------------------------------------------- /.github/bot-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/bot-action/action.yml -------------------------------------------------------------------------------- /.github/bot-action/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/bot-action/main.py -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/pyproject.toml -------------------------------------------------------------------------------- /.github/release-check-action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/release-check-action/Dockerfile -------------------------------------------------------------------------------- /.github/release-check-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/release-check-action/action.yml -------------------------------------------------------------------------------- /.github/release-check-action/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/release-check-action/check.py -------------------------------------------------------------------------------- /.github/release-check-action/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/release-check-action/config.py -------------------------------------------------------------------------------- /.github/release-check-action/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/release-check-action/release.py -------------------------------------------------------------------------------- /.github/workflows/codeflash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/codeflash.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/federation-compatibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/federation-compatibility.yml -------------------------------------------------------------------------------- /.github/workflows/invite-contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/invite-contributors.yml -------------------------------------------------------------------------------- /.github/workflows/issue-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/issue-manager.yml -------------------------------------------------------------------------------- /.github/workflows/ok-to-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/ok-to-preview.yml -------------------------------------------------------------------------------- /.github/workflows/pre-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/pre-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/release-check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/slash-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/slash-commands.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/_test.md -------------------------------------------------------------------------------- /docs/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.146.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.146.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.159.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.159.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.169.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.169.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.180.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.180.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.213.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.213.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.217.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.217.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.233.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.233.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.236.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.236.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.240.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.240.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.243.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.243.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.249.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.249.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.251.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.251.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.268.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.268.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.278.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.278.1.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.279.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.279.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.283.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.283.0.md -------------------------------------------------------------------------------- /docs/breaking-changes/0.285.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/breaking-changes/0.285.0.md -------------------------------------------------------------------------------- /docs/cli/locate-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/cli/locate-definition.md -------------------------------------------------------------------------------- /docs/codegen/query-codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/codegen/query-codegen.md -------------------------------------------------------------------------------- /docs/codegen/schema-codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/codegen/schema-codegen.md -------------------------------------------------------------------------------- /docs/concepts/async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/concepts/async.md -------------------------------------------------------------------------------- /docs/concepts/typings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/concepts/typings.md -------------------------------------------------------------------------------- /docs/editors/mypy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/editors/mypy.md -------------------------------------------------------------------------------- /docs/editors/pylance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/editors/pylance.png -------------------------------------------------------------------------------- /docs/editors/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/editors/vscode.md -------------------------------------------------------------------------------- /docs/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors.md -------------------------------------------------------------------------------- /docs/errors/_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/_template.md -------------------------------------------------------------------------------- /docs/errors/conflicting-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/conflicting-arguments.md -------------------------------------------------------------------------------- /docs/errors/duplicated-type-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/duplicated-type-name.md -------------------------------------------------------------------------------- /docs/errors/invalid-argument-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/invalid-argument-type.md -------------------------------------------------------------------------------- /docs/errors/invalid-superclass-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/invalid-superclass-interface.md -------------------------------------------------------------------------------- /docs/errors/invalid-type-for-union-merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/invalid-type-for-union-merge.md -------------------------------------------------------------------------------- /docs/errors/invalid-union-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/invalid-union-type.md -------------------------------------------------------------------------------- /docs/errors/missing-arguments-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/missing-arguments-annotations.md -------------------------------------------------------------------------------- /docs/errors/missing-field-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/missing-field-annotation.md -------------------------------------------------------------------------------- /docs/errors/missing-return-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/missing-return-annotation.md -------------------------------------------------------------------------------- /docs/errors/node-id-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/node-id-annotation.md -------------------------------------------------------------------------------- /docs/errors/object-is-not-an-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/object-is-not-an-enum.md -------------------------------------------------------------------------------- /docs/errors/object-is-not-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/object-is-not-class.md -------------------------------------------------------------------------------- /docs/errors/private-strawberry-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/private-strawberry-field.md -------------------------------------------------------------------------------- /docs/errors/relay-wrong-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/relay-wrong-annotation.md -------------------------------------------------------------------------------- /docs/errors/relay-wrong-resolver-annotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/relay-wrong-resolver-annotation.md -------------------------------------------------------------------------------- /docs/errors/scalar-already-registered.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/scalar-already-registered.md -------------------------------------------------------------------------------- /docs/errors/unresolved-field-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/unresolved-field-type.md -------------------------------------------------------------------------------- /docs/errors/unsupported-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/errors/unsupported-type.md -------------------------------------------------------------------------------- /docs/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions.md -------------------------------------------------------------------------------- /docs/extensions/_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/_template.md -------------------------------------------------------------------------------- /docs/extensions/add-validation-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/add-validation-rules.md -------------------------------------------------------------------------------- /docs/extensions/apollo-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/apollo-tracing.md -------------------------------------------------------------------------------- /docs/extensions/datadog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/datadog.md -------------------------------------------------------------------------------- /docs/extensions/disable-introspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/disable-introspection.md -------------------------------------------------------------------------------- /docs/extensions/disable-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/disable-validation.md -------------------------------------------------------------------------------- /docs/extensions/input-mutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/input-mutation.md -------------------------------------------------------------------------------- /docs/extensions/mask-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/mask-errors.md -------------------------------------------------------------------------------- /docs/extensions/max-aliases-limiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/max-aliases-limiter.md -------------------------------------------------------------------------------- /docs/extensions/max-tokens-limiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/max-tokens-limiter.md -------------------------------------------------------------------------------- /docs/extensions/opentelemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/opentelemetry.md -------------------------------------------------------------------------------- /docs/extensions/parser-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/parser-cache.md -------------------------------------------------------------------------------- /docs/extensions/pyinstrument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/pyinstrument.md -------------------------------------------------------------------------------- /docs/extensions/query-depth-limiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/query-depth-limiter.md -------------------------------------------------------------------------------- /docs/extensions/sentry-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/sentry-tracing.md -------------------------------------------------------------------------------- /docs/extensions/validation-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/extensions/validation-cache.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/federation/custom_directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/federation/custom_directives.md -------------------------------------------------------------------------------- /docs/federation/entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/federation/entities.md -------------------------------------------------------------------------------- /docs/federation/entity-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/federation/entity-interfaces.md -------------------------------------------------------------------------------- /docs/federation/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/federation/introduction.md -------------------------------------------------------------------------------- /docs/general/multipart-subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/multipart-subscriptions.md -------------------------------------------------------------------------------- /docs/general/mutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/mutations.md -------------------------------------------------------------------------------- /docs/general/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/queries.md -------------------------------------------------------------------------------- /docs/general/schema-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/schema-basics.md -------------------------------------------------------------------------------- /docs/general/subscriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/subscriptions.md -------------------------------------------------------------------------------- /docs/general/upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/general/upgrades.md -------------------------------------------------------------------------------- /docs/guides/accessing-parent-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/accessing-parent-data.md -------------------------------------------------------------------------------- /docs/guides/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/authentication.md -------------------------------------------------------------------------------- /docs/guides/convert-to-dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/convert-to-dictionary.md -------------------------------------------------------------------------------- /docs/guides/custom-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/custom-extensions.md -------------------------------------------------------------------------------- /docs/guides/dataloaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/dataloaders.md -------------------------------------------------------------------------------- /docs/guides/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/errors.md -------------------------------------------------------------------------------- /docs/guides/federation-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/federation-v1.md -------------------------------------------------------------------------------- /docs/guides/federation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/federation.md -------------------------------------------------------------------------------- /docs/guides/field-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/field-extensions.md -------------------------------------------------------------------------------- /docs/guides/file-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/file-upload.md -------------------------------------------------------------------------------- /docs/guides/pagination/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/pagination/connections.md -------------------------------------------------------------------------------- /docs/guides/pagination/cursor-based.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/pagination/cursor-based.md -------------------------------------------------------------------------------- /docs/guides/pagination/offset-based.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/pagination/offset-based.md -------------------------------------------------------------------------------- /docs/guides/pagination/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/pagination/overview.md -------------------------------------------------------------------------------- /docs/guides/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/permissions.md -------------------------------------------------------------------------------- /docs/guides/query-batching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/query-batching.md -------------------------------------------------------------------------------- /docs/guides/relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/relay.md -------------------------------------------------------------------------------- /docs/guides/schema-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/schema-export.md -------------------------------------------------------------------------------- /docs/guides/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/server.md -------------------------------------------------------------------------------- /docs/guides/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/guides/tools.md -------------------------------------------------------------------------------- /docs/images/index-query-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/images/index-query-example.png -------------------------------------------------------------------------------- /docs/images/index-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/images/index-server.png -------------------------------------------------------------------------------- /docs/images/subscriptions-count-websocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/images/subscriptions-count-websocket.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/integrations/aiohttp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/aiohttp.md -------------------------------------------------------------------------------- /docs/integrations/asgi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/asgi.md -------------------------------------------------------------------------------- /docs/integrations/chalice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/chalice.md -------------------------------------------------------------------------------- /docs/integrations/channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/channels.md -------------------------------------------------------------------------------- /docs/integrations/creating-an-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/creating-an-integration.md -------------------------------------------------------------------------------- /docs/integrations/django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/django.md -------------------------------------------------------------------------------- /docs/integrations/fastapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/fastapi.md -------------------------------------------------------------------------------- /docs/integrations/flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/flask.md -------------------------------------------------------------------------------- /docs/integrations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/index.md -------------------------------------------------------------------------------- /docs/integrations/litestar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/litestar.md -------------------------------------------------------------------------------- /docs/integrations/pydantic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/pydantic.md -------------------------------------------------------------------------------- /docs/integrations/quart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/quart.md -------------------------------------------------------------------------------- /docs/integrations/sanic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/sanic.md -------------------------------------------------------------------------------- /docs/integrations/starlette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/integrations/starlette.md -------------------------------------------------------------------------------- /docs/operations/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/operations/deployment.md -------------------------------------------------------------------------------- /docs/operations/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/operations/testing.md -------------------------------------------------------------------------------- /docs/operations/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/operations/tracing.md -------------------------------------------------------------------------------- /docs/types/defer-and-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/defer-and-stream.md -------------------------------------------------------------------------------- /docs/types/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/enums.md -------------------------------------------------------------------------------- /docs/types/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/exceptions.md -------------------------------------------------------------------------------- /docs/types/generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/generics.md -------------------------------------------------------------------------------- /docs/types/input-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/input-types.md -------------------------------------------------------------------------------- /docs/types/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/interfaces.md -------------------------------------------------------------------------------- /docs/types/lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/lazy.md -------------------------------------------------------------------------------- /docs/types/maybe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/maybe.md -------------------------------------------------------------------------------- /docs/types/object-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/object-types.md -------------------------------------------------------------------------------- /docs/types/operation-directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/operation-directives.md -------------------------------------------------------------------------------- /docs/types/private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/private.md -------------------------------------------------------------------------------- /docs/types/resolvers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/resolvers.md -------------------------------------------------------------------------------- /docs/types/scalars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/scalars.md -------------------------------------------------------------------------------- /docs/types/schema-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/schema-configurations.md -------------------------------------------------------------------------------- /docs/types/schema-directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/schema-directives.md -------------------------------------------------------------------------------- /docs/types/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/schema.md -------------------------------------------------------------------------------- /docs/types/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/docs/types/union.md -------------------------------------------------------------------------------- /e2e/.gitattributes: -------------------------------------------------------------------------------- 1 | *.graphql.ts auto eol=lf 2 | -------------------------------------------------------------------------------- /e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/.gitignore -------------------------------------------------------------------------------- /e2e/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/app.py -------------------------------------------------------------------------------- /e2e/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/app.ts -------------------------------------------------------------------------------- /e2e/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/bun.lock -------------------------------------------------------------------------------- /e2e/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/components.json -------------------------------------------------------------------------------- /e2e/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/eslint.config.js -------------------------------------------------------------------------------- /e2e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/index.html -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/playwright.config.ts -------------------------------------------------------------------------------- /e2e/relay.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/relay.config.json -------------------------------------------------------------------------------- /e2e/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/App.tsx -------------------------------------------------------------------------------- /e2e/src/RelayEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/RelayEnvironment.ts -------------------------------------------------------------------------------- /e2e/src/components/apollo-tests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/components/apollo-tests.tsx -------------------------------------------------------------------------------- /e2e/src/components/relay-tests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/components/relay-tests.tsx -------------------------------------------------------------------------------- /e2e/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/components/ui/button.tsx -------------------------------------------------------------------------------- /e2e/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/index.css -------------------------------------------------------------------------------- /e2e/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/lib/utils.ts -------------------------------------------------------------------------------- /e2e/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/main.tsx -------------------------------------------------------------------------------- /e2e/src/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/schema.graphql -------------------------------------------------------------------------------- /e2e/src/tests/graphql-clients.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/src/tests/graphql-clients.spec.ts -------------------------------------------------------------------------------- /e2e/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /e2e/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/tsconfig.app.json -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /e2e/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/tsconfig.node.json -------------------------------------------------------------------------------- /e2e/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/e2e/vite.config.ts -------------------------------------------------------------------------------- /federation-compatibility/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/federation-compatibility/Dockerfile -------------------------------------------------------------------------------- /federation-compatibility/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/federation-compatibility/docker-compose.yml -------------------------------------------------------------------------------- /federation-compatibility/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/federation-compatibility/schema.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/noxfile.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/setup.py -------------------------------------------------------------------------------- /strawberry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/__init__.py -------------------------------------------------------------------------------- /strawberry/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/__main__.py -------------------------------------------------------------------------------- /strawberry/aiohttp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/aiohttp/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/aiohttp/test/__init__.py -------------------------------------------------------------------------------- /strawberry/aiohttp/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/aiohttp/test/client.py -------------------------------------------------------------------------------- /strawberry/aiohttp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/aiohttp/views.py -------------------------------------------------------------------------------- /strawberry/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/annotation.py -------------------------------------------------------------------------------- /strawberry/asgi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/asgi/__init__.py -------------------------------------------------------------------------------- /strawberry/asgi/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/asgi/test/__init__.py -------------------------------------------------------------------------------- /strawberry/asgi/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/asgi/test/client.py -------------------------------------------------------------------------------- /strawberry/chalice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/chalice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/chalice/views.py -------------------------------------------------------------------------------- /strawberry/channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/__init__.py -------------------------------------------------------------------------------- /strawberry/channels/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/channels/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/handlers/base.py -------------------------------------------------------------------------------- /strawberry/channels/handlers/http_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/handlers/http_handler.py -------------------------------------------------------------------------------- /strawberry/channels/handlers/ws_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/handlers/ws_handler.py -------------------------------------------------------------------------------- /strawberry/channels/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/router.py -------------------------------------------------------------------------------- /strawberry/channels/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/channels/testing.py -------------------------------------------------------------------------------- /strawberry/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/__init__.py -------------------------------------------------------------------------------- /strawberry/cli/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/app.py -------------------------------------------------------------------------------- /strawberry/cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/cli/commands/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/codegen.py -------------------------------------------------------------------------------- /strawberry/cli/commands/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/dev.py -------------------------------------------------------------------------------- /strawberry/cli/commands/export_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/export_schema.py -------------------------------------------------------------------------------- /strawberry/cli/commands/locate_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/locate_definition.py -------------------------------------------------------------------------------- /strawberry/cli/commands/schema_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/schema_codegen.py -------------------------------------------------------------------------------- /strawberry/cli/commands/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/server.py -------------------------------------------------------------------------------- /strawberry/cli/commands/upgrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/upgrade/__init__.py -------------------------------------------------------------------------------- /strawberry/cli/commands/upgrade/_fake_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/upgrade/_fake_progress.py -------------------------------------------------------------------------------- /strawberry/cli/commands/upgrade/_run_codemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/commands/upgrade/_run_codemod.py -------------------------------------------------------------------------------- /strawberry/cli/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/constants.py -------------------------------------------------------------------------------- /strawberry/cli/dev_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/dev_server.py -------------------------------------------------------------------------------- /strawberry/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/cli/utils/__init__.py -------------------------------------------------------------------------------- /strawberry/cli/utils/load_schema.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/codegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/__init__.py -------------------------------------------------------------------------------- /strawberry/codegen/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/exceptions.py -------------------------------------------------------------------------------- /strawberry/codegen/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/codegen/plugins/print_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/plugins/print_operation.py -------------------------------------------------------------------------------- /strawberry/codegen/plugins/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/plugins/python.py -------------------------------------------------------------------------------- /strawberry/codegen/plugins/typescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/plugins/typescript.py -------------------------------------------------------------------------------- /strawberry/codegen/query_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/query_codegen.py -------------------------------------------------------------------------------- /strawberry/codegen/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codegen/types.py -------------------------------------------------------------------------------- /strawberry/codemods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codemods/__init__.py -------------------------------------------------------------------------------- /strawberry/codemods/annotated_unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codemods/annotated_unions.py -------------------------------------------------------------------------------- /strawberry/codemods/maybe_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codemods/maybe_optional.py -------------------------------------------------------------------------------- /strawberry/codemods/update_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/codemods/update_imports.py -------------------------------------------------------------------------------- /strawberry/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/dataloader.py -------------------------------------------------------------------------------- /strawberry/directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/directive.py -------------------------------------------------------------------------------- /strawberry/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/__init__.py -------------------------------------------------------------------------------- /strawberry/django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/apps.py -------------------------------------------------------------------------------- /strawberry/django/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/context.py -------------------------------------------------------------------------------- /strawberry/django/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/test/__init__.py -------------------------------------------------------------------------------- /strawberry/django/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/test/client.py -------------------------------------------------------------------------------- /strawberry/django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/django/views.py -------------------------------------------------------------------------------- /strawberry/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/__init__.py -------------------------------------------------------------------------------- /strawberry/exceptions/conflicting_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/conflicting_arguments.py -------------------------------------------------------------------------------- /strawberry/exceptions/duplicated_type_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/duplicated_type_name.py -------------------------------------------------------------------------------- /strawberry/exceptions/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/exception.py -------------------------------------------------------------------------------- /strawberry/exceptions/exception_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/exception_source.py -------------------------------------------------------------------------------- /strawberry/exceptions/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/handler.py -------------------------------------------------------------------------------- /strawberry/exceptions/invalid_argument_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/invalid_argument_type.py -------------------------------------------------------------------------------- /strawberry/exceptions/invalid_union_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/invalid_union_type.py -------------------------------------------------------------------------------- /strawberry/exceptions/missing_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/missing_dependencies.py -------------------------------------------------------------------------------- /strawberry/exceptions/missing_field_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/missing_field_annotation.py -------------------------------------------------------------------------------- /strawberry/exceptions/object_is_not_a_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/object_is_not_a_class.py -------------------------------------------------------------------------------- /strawberry/exceptions/object_is_not_an_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/object_is_not_an_enum.py -------------------------------------------------------------------------------- /strawberry/exceptions/private_strawberry_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/private_strawberry_field.py -------------------------------------------------------------------------------- /strawberry/exceptions/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/syntax.py -------------------------------------------------------------------------------- /strawberry/exceptions/unresolved_field_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/unresolved_field_type.py -------------------------------------------------------------------------------- /strawberry/exceptions/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/exceptions/utils/source_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/exceptions/utils/source_finder.py -------------------------------------------------------------------------------- /strawberry/experimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/__init__.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/__init__.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/_compat.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/conversion.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/error_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/error_type.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/exceptions.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/fields.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/object_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/object_type.py -------------------------------------------------------------------------------- /strawberry/experimental/pydantic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/experimental/pydantic/utils.py -------------------------------------------------------------------------------- /strawberry/ext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/ext/LICENSE -------------------------------------------------------------------------------- /strawberry/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/ext/dataclasses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/ext/dataclasses/LICENSE -------------------------------------------------------------------------------- /strawberry/ext/dataclasses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/ext/dataclasses/README.md -------------------------------------------------------------------------------- /strawberry/ext/dataclasses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/ext/dataclasses/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/ext/dataclasses/dataclasses.py -------------------------------------------------------------------------------- /strawberry/ext/mypy_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/ext/mypy_plugin.py -------------------------------------------------------------------------------- /strawberry/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/__init__.py -------------------------------------------------------------------------------- /strawberry/extensions/add_validation_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/add_validation_rules.py -------------------------------------------------------------------------------- /strawberry/extensions/base_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/base_extension.py -------------------------------------------------------------------------------- /strawberry/extensions/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/context.py -------------------------------------------------------------------------------- /strawberry/extensions/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/directives.py -------------------------------------------------------------------------------- /strawberry/extensions/disable_introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/disable_introspection.py -------------------------------------------------------------------------------- /strawberry/extensions/disable_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/disable_validation.py -------------------------------------------------------------------------------- /strawberry/extensions/field_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/field_extension.py -------------------------------------------------------------------------------- /strawberry/extensions/mask_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/mask_errors.py -------------------------------------------------------------------------------- /strawberry/extensions/max_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/max_aliases.py -------------------------------------------------------------------------------- /strawberry/extensions/max_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/max_tokens.py -------------------------------------------------------------------------------- /strawberry/extensions/parser_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/parser_cache.py -------------------------------------------------------------------------------- /strawberry/extensions/pyinstrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/pyinstrument.py -------------------------------------------------------------------------------- /strawberry/extensions/query_depth_limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/query_depth_limiter.py -------------------------------------------------------------------------------- /strawberry/extensions/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/runner.py -------------------------------------------------------------------------------- /strawberry/extensions/tracing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/tracing/__init__.py -------------------------------------------------------------------------------- /strawberry/extensions/tracing/apollo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/tracing/apollo.py -------------------------------------------------------------------------------- /strawberry/extensions/tracing/datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/tracing/datadog.py -------------------------------------------------------------------------------- /strawberry/extensions/tracing/opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/tracing/opentelemetry.py -------------------------------------------------------------------------------- /strawberry/extensions/tracing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/tracing/utils.py -------------------------------------------------------------------------------- /strawberry/extensions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/utils.py -------------------------------------------------------------------------------- /strawberry/extensions/validation_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/extensions/validation_cache.py -------------------------------------------------------------------------------- /strawberry/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/fastapi/__init__.py -------------------------------------------------------------------------------- /strawberry/fastapi/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/fastapi/context.py -------------------------------------------------------------------------------- /strawberry/fastapi/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/fastapi/router.py -------------------------------------------------------------------------------- /strawberry/federation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/__init__.py -------------------------------------------------------------------------------- /strawberry/federation/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/argument.py -------------------------------------------------------------------------------- /strawberry/federation/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/enum.py -------------------------------------------------------------------------------- /strawberry/federation/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/field.py -------------------------------------------------------------------------------- /strawberry/federation/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/mutation.py -------------------------------------------------------------------------------- /strawberry/federation/object_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/object_type.py -------------------------------------------------------------------------------- /strawberry/federation/scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/scalar.py -------------------------------------------------------------------------------- /strawberry/federation/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/schema.py -------------------------------------------------------------------------------- /strawberry/federation/schema_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/schema_directive.py -------------------------------------------------------------------------------- /strawberry/federation/schema_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/schema_directives.py -------------------------------------------------------------------------------- /strawberry/federation/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/types.py -------------------------------------------------------------------------------- /strawberry/federation/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/union.py -------------------------------------------------------------------------------- /strawberry/federation/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/federation/versions.py -------------------------------------------------------------------------------- /strawberry/field_extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/field_extensions/__init__.py -------------------------------------------------------------------------------- /strawberry/field_extensions/input_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/field_extensions/input_mutation.py -------------------------------------------------------------------------------- /strawberry/file_uploads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/file_uploads/__init__.py -------------------------------------------------------------------------------- /strawberry/file_uploads/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/file_uploads/scalars.py -------------------------------------------------------------------------------- /strawberry/file_uploads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/file_uploads/utils.py -------------------------------------------------------------------------------- /strawberry/flask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/flask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/flask/views.py -------------------------------------------------------------------------------- /strawberry/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/__init__.py -------------------------------------------------------------------------------- /strawberry/http/async_base_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/async_base_view.py -------------------------------------------------------------------------------- /strawberry/http/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/base.py -------------------------------------------------------------------------------- /strawberry/http/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/exceptions.py -------------------------------------------------------------------------------- /strawberry/http/ides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/ides.py -------------------------------------------------------------------------------- /strawberry/http/parse_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/parse_content_type.py -------------------------------------------------------------------------------- /strawberry/http/sync_base_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/sync_base_view.py -------------------------------------------------------------------------------- /strawberry/http/temporal_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/temporal_response.py -------------------------------------------------------------------------------- /strawberry/http/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/types.py -------------------------------------------------------------------------------- /strawberry/http/typevars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/http/typevars.py -------------------------------------------------------------------------------- /strawberry/litestar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/litestar/__init__.py -------------------------------------------------------------------------------- /strawberry/litestar/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/litestar/controller.py -------------------------------------------------------------------------------- /strawberry/parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/parent.py -------------------------------------------------------------------------------- /strawberry/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/permission.py -------------------------------------------------------------------------------- /strawberry/printer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/printer/__init__.py -------------------------------------------------------------------------------- /strawberry/printer/ast_from_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/printer/ast_from_value.py -------------------------------------------------------------------------------- /strawberry/printer/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/printer/printer.py -------------------------------------------------------------------------------- /strawberry/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/quart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/quart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/quart/views.py -------------------------------------------------------------------------------- /strawberry/relay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/relay/__init__.py -------------------------------------------------------------------------------- /strawberry/relay/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/relay/exceptions.py -------------------------------------------------------------------------------- /strawberry/relay/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/relay/fields.py -------------------------------------------------------------------------------- /strawberry/relay/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/relay/types.py -------------------------------------------------------------------------------- /strawberry/relay/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/relay/utils.py -------------------------------------------------------------------------------- /strawberry/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/resolvers.py -------------------------------------------------------------------------------- /strawberry/sanic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/sanic/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/sanic/context.py -------------------------------------------------------------------------------- /strawberry/sanic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/sanic/utils.py -------------------------------------------------------------------------------- /strawberry/sanic/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/sanic/views.py -------------------------------------------------------------------------------- /strawberry/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/scalars.py -------------------------------------------------------------------------------- /strawberry/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/__init__.py -------------------------------------------------------------------------------- /strawberry/schema/_graphql_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/_graphql_core.py -------------------------------------------------------------------------------- /strawberry/schema/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/base.py -------------------------------------------------------------------------------- /strawberry/schema/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/compat.py -------------------------------------------------------------------------------- /strawberry/schema/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/config.py -------------------------------------------------------------------------------- /strawberry/schema/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/exceptions.py -------------------------------------------------------------------------------- /strawberry/schema/name_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/name_converter.py -------------------------------------------------------------------------------- /strawberry/schema/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/schema.py -------------------------------------------------------------------------------- /strawberry/schema/schema_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/schema_converter.py -------------------------------------------------------------------------------- /strawberry/schema/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/types/__init__.py -------------------------------------------------------------------------------- /strawberry/schema/types/base_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/types/base_scalars.py -------------------------------------------------------------------------------- /strawberry/schema/types/concrete_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/types/concrete_type.py -------------------------------------------------------------------------------- /strawberry/schema/types/scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/types/scalar.py -------------------------------------------------------------------------------- /strawberry/schema/validation_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/schema/validation_rules/maybe_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/validation_rules/maybe_null.py -------------------------------------------------------------------------------- /strawberry/schema/validation_rules/one_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema/validation_rules/one_of.py -------------------------------------------------------------------------------- /strawberry/schema_codegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema_codegen/__init__.py -------------------------------------------------------------------------------- /strawberry/schema_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema_directive.py -------------------------------------------------------------------------------- /strawberry/schema_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/schema_directives.py -------------------------------------------------------------------------------- /strawberry/static/apollo-sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/static/apollo-sandbox.html -------------------------------------------------------------------------------- /strawberry/static/graphiql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/static/graphiql.html -------------------------------------------------------------------------------- /strawberry/static/pathfinder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/static/pathfinder.html -------------------------------------------------------------------------------- /strawberry/streamable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/streamable.py -------------------------------------------------------------------------------- /strawberry/subscriptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/subscriptions/__init__.py -------------------------------------------------------------------------------- /strawberry/subscriptions/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/subscriptions/protocols/graphql_ws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/test/__init__.py -------------------------------------------------------------------------------- /strawberry/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/test/client.py -------------------------------------------------------------------------------- /strawberry/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/tools/__init__.py -------------------------------------------------------------------------------- /strawberry/tools/create_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/tools/create_type.py -------------------------------------------------------------------------------- /strawberry/tools/merge_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/tools/merge_types.py -------------------------------------------------------------------------------- /strawberry/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/__init__.py -------------------------------------------------------------------------------- /strawberry/types/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/arguments.py -------------------------------------------------------------------------------- /strawberry/types/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/auto.py -------------------------------------------------------------------------------- /strawberry/types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/base.py -------------------------------------------------------------------------------- /strawberry/types/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/cast.py -------------------------------------------------------------------------------- /strawberry/types/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/enum.py -------------------------------------------------------------------------------- /strawberry/types/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/execution.py -------------------------------------------------------------------------------- /strawberry/types/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/field.py -------------------------------------------------------------------------------- /strawberry/types/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strawberry/types/fields/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/fields/resolver.py -------------------------------------------------------------------------------- /strawberry/types/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/graphql.py -------------------------------------------------------------------------------- /strawberry/types/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/info.py -------------------------------------------------------------------------------- /strawberry/types/lazy_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/lazy_type.py -------------------------------------------------------------------------------- /strawberry/types/maybe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/maybe.py -------------------------------------------------------------------------------- /strawberry/types/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/mutation.py -------------------------------------------------------------------------------- /strawberry/types/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/nodes.py -------------------------------------------------------------------------------- /strawberry/types/object_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/object_type.py -------------------------------------------------------------------------------- /strawberry/types/private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/private.py -------------------------------------------------------------------------------- /strawberry/types/scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/scalar.py -------------------------------------------------------------------------------- /strawberry/types/type_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/type_resolver.py -------------------------------------------------------------------------------- /strawberry/types/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/union.py -------------------------------------------------------------------------------- /strawberry/types/unset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/types/unset.py -------------------------------------------------------------------------------- /strawberry/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/__init__.py -------------------------------------------------------------------------------- /strawberry/utils/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/aio.py -------------------------------------------------------------------------------- /strawberry/utils/await_maybe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/await_maybe.py -------------------------------------------------------------------------------- /strawberry/utils/deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/deprecations.py -------------------------------------------------------------------------------- /strawberry/utils/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/importer.py -------------------------------------------------------------------------------- /strawberry/utils/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/inspect.py -------------------------------------------------------------------------------- /strawberry/utils/locate_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/locate_definition.py -------------------------------------------------------------------------------- /strawberry/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/logging.py -------------------------------------------------------------------------------- /strawberry/utils/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/operation.py -------------------------------------------------------------------------------- /strawberry/utils/str_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/str_converters.py -------------------------------------------------------------------------------- /strawberry/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/strawberry/utils/typing.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/a.py -------------------------------------------------------------------------------- /tests/asgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/asgi/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/asgi/test_async.py -------------------------------------------------------------------------------- /tests/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/b.py -------------------------------------------------------------------------------- /tests/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmarks/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/api.py -------------------------------------------------------------------------------- /tests/benchmarks/queries/items.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/queries/items.graphql -------------------------------------------------------------------------------- /tests/benchmarks/queries/many_fields.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/queries/many_fields.graphql -------------------------------------------------------------------------------- /tests/benchmarks/queries/simple.graphql: -------------------------------------------------------------------------------- 1 | { 2 | hello 3 | } 4 | -------------------------------------------------------------------------------- /tests/benchmarks/queries/stadium.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/queries/stadium.graphql -------------------------------------------------------------------------------- /tests/benchmarks/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/schema.py -------------------------------------------------------------------------------- /tests/benchmarks/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_arguments.py -------------------------------------------------------------------------------- /tests/benchmarks/test_complex_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_complex_schema.py -------------------------------------------------------------------------------- /tests/benchmarks/test_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_execute.py -------------------------------------------------------------------------------- /tests/benchmarks/test_execute_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_execute_sync.py -------------------------------------------------------------------------------- /tests/benchmarks/test_execute_with_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_execute_with_extensions.py -------------------------------------------------------------------------------- /tests/benchmarks/test_generic_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_generic_input.py -------------------------------------------------------------------------------- /tests/benchmarks/test_stadium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_stadium.py -------------------------------------------------------------------------------- /tests/benchmarks/test_subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/benchmarks/test_subscriptions.py -------------------------------------------------------------------------------- /tests/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/c.py -------------------------------------------------------------------------------- /tests/channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/channels/test_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/channels/test_layers.py -------------------------------------------------------------------------------- /tests/channels/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/channels/test_router.py -------------------------------------------------------------------------------- /tests/channels/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/channels/test_testing.py -------------------------------------------------------------------------------- /tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/conftest.py -------------------------------------------------------------------------------- /tests/cli/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/fixtures/unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/fixtures/unions.py -------------------------------------------------------------------------------- /tests/cli/snapshots/unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/snapshots/unions.py -------------------------------------------------------------------------------- /tests/cli/snapshots/unions_typing_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/snapshots/unions_typing_extension.py -------------------------------------------------------------------------------- /tests/cli/test_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_codegen.py -------------------------------------------------------------------------------- /tests/cli/test_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_dev.py -------------------------------------------------------------------------------- /tests/cli/test_export_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_export_schema.py -------------------------------------------------------------------------------- /tests/cli/test_locate_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_locate_definition.py -------------------------------------------------------------------------------- /tests/cli/test_schema_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_schema_codegen.py -------------------------------------------------------------------------------- /tests/cli/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_server.py -------------------------------------------------------------------------------- /tests/cli/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/cli/test_upgrade.py -------------------------------------------------------------------------------- /tests/codegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codegen/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/conftest.py -------------------------------------------------------------------------------- /tests/codegen/lazy_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/lazy_type.py -------------------------------------------------------------------------------- /tests/codegen/queries/alias.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/alias.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/basic.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/basic.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/custom_scalar.graphql: -------------------------------------------------------------------------------- 1 | query OperationName { 2 | json 3 | } 4 | -------------------------------------------------------------------------------- /tests/codegen/queries/enum.graphql: -------------------------------------------------------------------------------- 1 | query OperationName { 2 | enum 3 | } 4 | -------------------------------------------------------------------------------- /tests/codegen/queries/fragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/fragment.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/generic_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/generic_types.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/interface.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/interface.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/interface_fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/interface_fragments.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/multiple_types.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/multiple_types.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/mutation-fragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/mutation-fragment.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/mutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/mutation.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/optional_and_lists.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/optional_and_lists.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/union.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/union.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/union_return.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/union_return.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/union_with_one_type.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/union_with_one_type.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/union_with_typename.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/union_with_typename.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/variables.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/variables.graphql -------------------------------------------------------------------------------- /tests/codegen/queries/with_directives.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/queries/with_directives.graphql -------------------------------------------------------------------------------- /tests/codegen/relay_queries/relay_alias.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/relay_queries/relay_alias.graphql -------------------------------------------------------------------------------- /tests/codegen/relay_queries/relay_list.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/relay_queries/relay_list.graphql -------------------------------------------------------------------------------- /tests/codegen/relay_queries/relay_node_id.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/relay_queries/relay_node_id.graphql -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/alias.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/basic.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/custom_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/custom_scalar.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/enum.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/fragment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/fragment.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/generic_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/generic_types.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/interface.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/multiple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/multiple_types.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/mutation.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/union.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/union_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/union_return.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/variables.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/python/with_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/python/with_directives.py -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/alias.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/basic.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/enum.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/fragment.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/interface.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/mutation.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/union.ts -------------------------------------------------------------------------------- /tests/codegen/snapshots/typescript/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/snapshots/typescript/variables.ts -------------------------------------------------------------------------------- /tests/codegen/test_print_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/test_print_operation.py -------------------------------------------------------------------------------- /tests/codegen/test_query_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/test_query_codegen.py -------------------------------------------------------------------------------- /tests/codegen/test_relay_node_id_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codegen/test_relay_node_id_codegen.py -------------------------------------------------------------------------------- /tests/codemods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/codemods/test_annotated_unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codemods/test_annotated_unions.py -------------------------------------------------------------------------------- /tests/codemods/test_annotated_unions_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codemods/test_annotated_unions_pipe.py -------------------------------------------------------------------------------- /tests/codemods/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codemods/test_imports.py -------------------------------------------------------------------------------- /tests/codemods/test_maybe_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/codemods/test_maybe_optional.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/d.py -------------------------------------------------------------------------------- /tests/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/django/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/django/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/app/models.py -------------------------------------------------------------------------------- /tests/django/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/app/urls.py -------------------------------------------------------------------------------- /tests/django/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/conftest.py -------------------------------------------------------------------------------- /tests/django/django_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/django_settings.py -------------------------------------------------------------------------------- /tests/django/test_dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/test_dataloaders.py -------------------------------------------------------------------------------- /tests/django/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/django/test_extensions.py -------------------------------------------------------------------------------- /tests/enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enums/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/enums/test_enum.py -------------------------------------------------------------------------------- /tests/exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/exceptions/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/exceptions/test_exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/exceptions/test_exception_handler.py -------------------------------------------------------------------------------- /tests/exceptions/test_exception_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/exceptions/test_exception_source.py -------------------------------------------------------------------------------- /tests/experimental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/experimental/pydantic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/experimental/pydantic/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/experimental/pydantic/schema/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/schema/test_basic.py -------------------------------------------------------------------------------- /tests/experimental/pydantic/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/test_basic.py -------------------------------------------------------------------------------- /tests/experimental/pydantic/test_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/test_conversion.py -------------------------------------------------------------------------------- /tests/experimental/pydantic/test_error_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/test_error_type.py -------------------------------------------------------------------------------- /tests/experimental/pydantic/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/test_fields.py -------------------------------------------------------------------------------- /tests/experimental/pydantic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/experimental/pydantic/utils.py -------------------------------------------------------------------------------- /tests/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extensions/test_pyinstrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/extensions/test_pyinstrument.py -------------------------------------------------------------------------------- /tests/extensions/tracing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/extensions/tracing/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/extensions/tracing/test_opentelemetry.py -------------------------------------------------------------------------------- /tests/fastapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fastapi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fastapi/app.py -------------------------------------------------------------------------------- /tests/fastapi/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fastapi/test_async.py -------------------------------------------------------------------------------- /tests/fastapi/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fastapi/test_context.py -------------------------------------------------------------------------------- /tests/fastapi/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fastapi/test_openapi.py -------------------------------------------------------------------------------- /tests/fastapi/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fastapi/test_router.py -------------------------------------------------------------------------------- /tests/federation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/federation/printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/federation/printer/test_authenticated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_authenticated.py -------------------------------------------------------------------------------- /tests/federation/printer/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_entities.py -------------------------------------------------------------------------------- /tests/federation/printer/test_inaccessible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_inaccessible.py -------------------------------------------------------------------------------- /tests/federation/printer/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_interface.py -------------------------------------------------------------------------------- /tests/federation/printer/test_interface_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_interface_object.py -------------------------------------------------------------------------------- /tests/federation/printer/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_keys.py -------------------------------------------------------------------------------- /tests/federation/printer/test_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_link.py -------------------------------------------------------------------------------- /tests/federation/printer/test_one_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_one_of.py -------------------------------------------------------------------------------- /tests/federation/printer/test_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_override.py -------------------------------------------------------------------------------- /tests/federation/printer/test_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_policy.py -------------------------------------------------------------------------------- /tests/federation/printer/test_provides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_provides.py -------------------------------------------------------------------------------- /tests/federation/printer/test_requires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_requires.py -------------------------------------------------------------------------------- /tests/federation/printer/test_requires_scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_requires_scopes.py -------------------------------------------------------------------------------- /tests/federation/printer/test_shareable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_shareable.py -------------------------------------------------------------------------------- /tests/federation/printer/test_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/printer/test_tag.py -------------------------------------------------------------------------------- /tests/federation/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/test_entities.py -------------------------------------------------------------------------------- /tests/federation/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/test_schema.py -------------------------------------------------------------------------------- /tests/federation/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/test_types.py -------------------------------------------------------------------------------- /tests/federation/test_version_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/federation/test_version_validation.py -------------------------------------------------------------------------------- /tests/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fields/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_arguments.py -------------------------------------------------------------------------------- /tests/fields/test_field_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_field_basics.py -------------------------------------------------------------------------------- /tests/fields/test_field_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_field_defaults.py -------------------------------------------------------------------------------- /tests/fields/test_field_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_field_descriptions.py -------------------------------------------------------------------------------- /tests/fields/test_field_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_field_exceptions.py -------------------------------------------------------------------------------- /tests/fields/test_field_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_field_names.py -------------------------------------------------------------------------------- /tests/fields/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_permissions.py -------------------------------------------------------------------------------- /tests/fields/test_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fields/test_resolvers.py -------------------------------------------------------------------------------- /tests/file_uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file_uploads/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/file_uploads/test_utils.py -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/sample_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/sample_package/sample_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/fixtures/sample_package/sample_module.py -------------------------------------------------------------------------------- /tests/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/http/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/http/clients/aiohttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/aiohttp.py -------------------------------------------------------------------------------- /tests/http/clients/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/asgi.py -------------------------------------------------------------------------------- /tests/http/clients/async_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/async_django.py -------------------------------------------------------------------------------- /tests/http/clients/async_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/async_flask.py -------------------------------------------------------------------------------- /tests/http/clients/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/base.py -------------------------------------------------------------------------------- /tests/http/clients/chalice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/chalice.py -------------------------------------------------------------------------------- /tests/http/clients/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/channels.py -------------------------------------------------------------------------------- /tests/http/clients/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/django.py -------------------------------------------------------------------------------- /tests/http/clients/fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/fastapi.py -------------------------------------------------------------------------------- /tests/http/clients/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/flask.py -------------------------------------------------------------------------------- /tests/http/clients/litestar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/litestar.py -------------------------------------------------------------------------------- /tests/http/clients/quart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/quart.py -------------------------------------------------------------------------------- /tests/http/clients/sanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/clients/sanic.py -------------------------------------------------------------------------------- /tests/http/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/conftest.py -------------------------------------------------------------------------------- /tests/http/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/context.py -------------------------------------------------------------------------------- /tests/http/incremental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/http/incremental/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/incremental/conftest.py -------------------------------------------------------------------------------- /tests/http/incremental/test_defer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/incremental/test_defer.py -------------------------------------------------------------------------------- /tests/http/incremental/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/incremental/test_stream.py -------------------------------------------------------------------------------- /tests/http/test_async_base_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_async_base_view.py -------------------------------------------------------------------------------- /tests/http/test_graphql_ide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_graphql_ide.py -------------------------------------------------------------------------------- /tests/http/test_graphql_over_http_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_graphql_over_http_spec.py -------------------------------------------------------------------------------- /tests/http/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_http.py -------------------------------------------------------------------------------- /tests/http/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_mutation.py -------------------------------------------------------------------------------- /tests/http/test_parse_content_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_parse_content_type.py -------------------------------------------------------------------------------- /tests/http/test_process_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_process_result.py -------------------------------------------------------------------------------- /tests/http/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_query.py -------------------------------------------------------------------------------- /tests/http/test_query_batching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_query_batching.py -------------------------------------------------------------------------------- /tests/http/test_query_via_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_query_via_get.py -------------------------------------------------------------------------------- /tests/http/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/http/test_upload.py -------------------------------------------------------------------------------- /tests/litestar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/litestar/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/litestar/app.py -------------------------------------------------------------------------------- /tests/litestar/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/litestar/conftest.py -------------------------------------------------------------------------------- /tests/litestar/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/litestar/test_context.py -------------------------------------------------------------------------------- /tests/litestar/test_response_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/litestar/test_response_headers.py -------------------------------------------------------------------------------- /tests/litestar/test_response_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/litestar/test_response_status.py -------------------------------------------------------------------------------- /tests/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/objects/generics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/objects/generics/test_generic_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/generics/test_generic_objects.py -------------------------------------------------------------------------------- /tests/objects/generics/test_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/generics/test_names.py -------------------------------------------------------------------------------- /tests/objects/test_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/test_inheritance.py -------------------------------------------------------------------------------- /tests/objects/test_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/test_interfaces.py -------------------------------------------------------------------------------- /tests/objects/test_object_instantiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/test_object_instantiation.py -------------------------------------------------------------------------------- /tests/objects/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/objects/test_types.py -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/strawberry_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/plugins/strawberry_exceptions.py -------------------------------------------------------------------------------- /tests/python_312/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/python_312/pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.ruff] 2 | target-version = "py312" 3 | -------------------------------------------------------------------------------- /tests/python_312/test_generic_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/python_312/test_generic_objects.py -------------------------------------------------------------------------------- /tests/python_312/test_generics_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/python_312/test_generics_schema.py -------------------------------------------------------------------------------- /tests/python_312/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/python_312/test_inspect.py -------------------------------------------------------------------------------- /tests/python_312/test_python_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/python_312/test_python_generics.py -------------------------------------------------------------------------------- /tests/relay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/relay/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/schema.py -------------------------------------------------------------------------------- /tests/relay/schema_future_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/schema_future_annotations.py -------------------------------------------------------------------------------- /tests/relay/snapshots/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/snapshots/schema.gql -------------------------------------------------------------------------------- /tests/relay/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_connection.py -------------------------------------------------------------------------------- /tests/relay/test_custom_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_custom_edge.py -------------------------------------------------------------------------------- /tests/relay/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_exceptions.py -------------------------------------------------------------------------------- /tests/relay/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_fields.py -------------------------------------------------------------------------------- /tests/relay/test_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_id.py -------------------------------------------------------------------------------- /tests/relay/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_schema.py -------------------------------------------------------------------------------- /tests/relay/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_types.py -------------------------------------------------------------------------------- /tests/relay/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/relay/test_utils.py -------------------------------------------------------------------------------- /tests/sanic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sanic/test_file_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/sanic/test_file_upload.py -------------------------------------------------------------------------------- /tests/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/extensions/schema_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/extensions/test_apollo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_apollo.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_datadog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_datadog.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_field_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_field_extensions.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_imports.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_input_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_input_mutation.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_mask_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_mask_errors.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_max_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_max_aliases.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_max_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_max_tokens.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_opentelemetry.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_parser_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_parser_cache.py -------------------------------------------------------------------------------- /tests/schema/extensions/test_validation_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/extensions/test_validation_cache.py -------------------------------------------------------------------------------- /tests/schema/test_annotated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/test_annotated/type_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_annotated/type_a.py -------------------------------------------------------------------------------- /tests/schema/test_annotated/type_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_annotated/type_b.py -------------------------------------------------------------------------------- /tests/schema/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_arguments.py -------------------------------------------------------------------------------- /tests/schema/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_basic.py -------------------------------------------------------------------------------- /tests/schema/test_camel_casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_camel_casing.py -------------------------------------------------------------------------------- /tests/schema/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_config.py -------------------------------------------------------------------------------- /tests/schema/test_custom_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_custom_scalar.py -------------------------------------------------------------------------------- /tests/schema/test_dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_dataloaders.py -------------------------------------------------------------------------------- /tests/schema/test_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_directives.py -------------------------------------------------------------------------------- /tests/schema/test_duplicated_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_duplicated_types.py -------------------------------------------------------------------------------- /tests/schema/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_enum.py -------------------------------------------------------------------------------- /tests/schema/test_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_execution.py -------------------------------------------------------------------------------- /tests/schema/test_execution_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_execution_errors.py -------------------------------------------------------------------------------- /tests/schema/test_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_extensions.py -------------------------------------------------------------------------------- /tests/schema/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_fields.py -------------------------------------------------------------------------------- /tests/schema/test_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_generics.py -------------------------------------------------------------------------------- /tests/schema/test_generics_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_generics_nested.py -------------------------------------------------------------------------------- /tests/schema/test_get_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_get_extensions.py -------------------------------------------------------------------------------- /tests/schema/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_info.py -------------------------------------------------------------------------------- /tests/schema/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_input.py -------------------------------------------------------------------------------- /tests/schema/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_interface.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/test_lazy/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/schema.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/test_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/test_lazy.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/test_lazy_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/test_lazy_generic.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/type_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/type_a.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/type_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/type_b.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/type_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/type_c.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/type_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/type_d.py -------------------------------------------------------------------------------- /tests/schema/test_lazy/type_e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy/type_e.py -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/test_cyclic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy_types/test_cyclic.py -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/test_lazy_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy_types/test_lazy_enums.py -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/test_lazy_unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy_types/test_lazy_unions.py -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/type_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy_types/type_a.py -------------------------------------------------------------------------------- /tests/schema/test_lazy_types/type_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_lazy_types/type_b.py -------------------------------------------------------------------------------- /tests/schema/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_list.py -------------------------------------------------------------------------------- /tests/schema/test_maybe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_maybe.py -------------------------------------------------------------------------------- /tests/schema/test_maybe_future_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_maybe_future_annotations.py -------------------------------------------------------------------------------- /tests/schema/test_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_mutation.py -------------------------------------------------------------------------------- /tests/schema/test_name_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_name_converter.py -------------------------------------------------------------------------------- /tests/schema/test_one_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_one_of.py -------------------------------------------------------------------------------- /tests/schema/test_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_permission.py -------------------------------------------------------------------------------- /tests/schema/test_private_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_private_field.py -------------------------------------------------------------------------------- /tests/schema/test_pydantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_pydantic.py -------------------------------------------------------------------------------- /tests/schema/test_resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_resolvers.py -------------------------------------------------------------------------------- /tests/schema/test_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_scalars.py -------------------------------------------------------------------------------- /tests/schema/test_schema_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_schema_generation.py -------------------------------------------------------------------------------- /tests/schema/test_schema_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_schema_hooks.py -------------------------------------------------------------------------------- /tests/schema/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_subscription.py -------------------------------------------------------------------------------- /tests/schema/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_union.py -------------------------------------------------------------------------------- /tests/schema/test_union_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_union_deprecated.py -------------------------------------------------------------------------------- /tests/schema/test_unresolved_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/test_unresolved_fields.py -------------------------------------------------------------------------------- /tests/schema/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/types/test_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/types/test_date.py -------------------------------------------------------------------------------- /tests/schema/types/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/types/test_datetime.py -------------------------------------------------------------------------------- /tests/schema/types/test_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/types/test_decimal.py -------------------------------------------------------------------------------- /tests/schema/types/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/types/test_time.py -------------------------------------------------------------------------------- /tests/schema/types/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/types/test_uuid.py -------------------------------------------------------------------------------- /tests/schema/validation_rules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema/validation_rules/test_maybe_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema/validation_rules/test_maybe_null.py -------------------------------------------------------------------------------- /tests/schema_codegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/schema_codegen/test_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_descriptions.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_enum.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_federation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_federation.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_input_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_input_types.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_names.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_order.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_root_types_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_root_types_extend.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_scalar.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_schema.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_types.py -------------------------------------------------------------------------------- /tests/schema_codegen/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/schema_codegen/test_union.py -------------------------------------------------------------------------------- /tests/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test/conftest.py -------------------------------------------------------------------------------- /tests/test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test/test_client.py -------------------------------------------------------------------------------- /tests/test_aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_aio.py -------------------------------------------------------------------------------- /tests/test_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_auto.py -------------------------------------------------------------------------------- /tests/test_dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_dataloaders.py -------------------------------------------------------------------------------- /tests/test_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_deprecations.py -------------------------------------------------------------------------------- /tests/test_forward_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_forward_references.py -------------------------------------------------------------------------------- /tests/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_info.py -------------------------------------------------------------------------------- /tests/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_inspect.py -------------------------------------------------------------------------------- /tests/test_printer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_printer/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_printer/test_basic.py -------------------------------------------------------------------------------- /tests/test_printer/test_defer_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_printer/test_defer_stream.py -------------------------------------------------------------------------------- /tests/test_printer/test_one_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_printer/test_one_of.py -------------------------------------------------------------------------------- /tests/test_printer/test_schema_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_printer/test_schema_directives.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/test_type.py -------------------------------------------------------------------------------- /tests/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tools/test_create_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/tools/test_create_type.py -------------------------------------------------------------------------------- /tests/tools/test_merge_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/tools/test_merge_types.py -------------------------------------------------------------------------------- /tests/typecheckers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/typecheckers/test_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_auto.py -------------------------------------------------------------------------------- /tests/typecheckers/test_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_directives.py -------------------------------------------------------------------------------- /tests/typecheckers/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_enum.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fastapi.py -------------------------------------------------------------------------------- /tests/typecheckers/test_federation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_federation.py -------------------------------------------------------------------------------- /tests/typecheckers/test_federation_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_federation_fields.py -------------------------------------------------------------------------------- /tests/typecheckers/test_federation_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_federation_params.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fields.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fields_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fields_input.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fields_keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fields_keyword.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fields_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fields_resolver.py -------------------------------------------------------------------------------- /tests/typecheckers/test_fields_resolver_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_fields_resolver_async.py -------------------------------------------------------------------------------- /tests/typecheckers/test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_info.py -------------------------------------------------------------------------------- /tests/typecheckers/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_interface.py -------------------------------------------------------------------------------- /tests/typecheckers/test_maybe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_maybe.py -------------------------------------------------------------------------------- /tests/typecheckers/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_params.py -------------------------------------------------------------------------------- /tests/typecheckers/test_private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_private.py -------------------------------------------------------------------------------- /tests/typecheckers/test_relay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_relay.py -------------------------------------------------------------------------------- /tests/typecheckers/test_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_scalars.py -------------------------------------------------------------------------------- /tests/typecheckers/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_type.py -------------------------------------------------------------------------------- /tests/typecheckers/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/test_union.py -------------------------------------------------------------------------------- /tests/typecheckers/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/typecheckers/utils/marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/utils/marks.py -------------------------------------------------------------------------------- /tests/typecheckers/utils/mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/utils/mypy.py -------------------------------------------------------------------------------- /tests/typecheckers/utils/pyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/utils/pyright.py -------------------------------------------------------------------------------- /tests/typecheckers/utils/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/utils/result.py -------------------------------------------------------------------------------- /tests/typecheckers/utils/typecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/typecheckers/utils/typecheck.py -------------------------------------------------------------------------------- /tests/types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/cross_module_resolvers/README.md -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/a_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/cross_module_resolvers/a_mod.py -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/b_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/cross_module_resolvers/b_mod.py -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/c_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/cross_module_resolvers/c_mod.py -------------------------------------------------------------------------------- /tests/types/cross_module_resolvers/x_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/cross_module_resolvers/x_mod.py -------------------------------------------------------------------------------- /tests/types/resolving/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/types/resolving/test_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_enums.py -------------------------------------------------------------------------------- /tests/types/resolving/test_forward_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_forward_references.py -------------------------------------------------------------------------------- /tests/types/resolving/test_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_generics.py -------------------------------------------------------------------------------- /tests/types/resolving/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_lists.py -------------------------------------------------------------------------------- /tests/types/resolving/test_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_literals.py -------------------------------------------------------------------------------- /tests/types/resolving/test_optionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_optionals.py -------------------------------------------------------------------------------- /tests/types/resolving/test_string_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_string_annotations.py -------------------------------------------------------------------------------- /tests/types/resolving/test_union_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_union_pipe.py -------------------------------------------------------------------------------- /tests/types/resolving/test_unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_unions.py -------------------------------------------------------------------------------- /tests/types/resolving/test_unions_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/resolving/test_unions_deprecated.py -------------------------------------------------------------------------------- /tests/types/test_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_annotation.py -------------------------------------------------------------------------------- /tests/types/test_argument_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_argument_types.py -------------------------------------------------------------------------------- /tests/types/test_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_cast.py -------------------------------------------------------------------------------- /tests/types/test_convert_to_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_convert_to_dictionary.py -------------------------------------------------------------------------------- /tests/types/test_deferred_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_deferred_annotations.py -------------------------------------------------------------------------------- /tests/types/test_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_execution.py -------------------------------------------------------------------------------- /tests/types/test_field_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_field_types.py -------------------------------------------------------------------------------- /tests/types/test_lazy_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_lazy_types.py -------------------------------------------------------------------------------- /tests/types/test_object_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_object_types.py -------------------------------------------------------------------------------- /tests/types/test_parent_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_parent_type.py -------------------------------------------------------------------------------- /tests/types/test_resolver_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/types/test_resolver_types.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_arguments_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_arguments_converter.py -------------------------------------------------------------------------------- /tests/utils/test_get_first_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_get_first_operation.py -------------------------------------------------------------------------------- /tests/utils/test_get_operation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_get_operation_type.py -------------------------------------------------------------------------------- /tests/utils/test_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_importer.py -------------------------------------------------------------------------------- /tests/utils/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_inspect.py -------------------------------------------------------------------------------- /tests/utils/test_locate_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_locate_definition.py -------------------------------------------------------------------------------- /tests/utils/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_logging.py -------------------------------------------------------------------------------- /tests/utils/test_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_typing.py -------------------------------------------------------------------------------- /tests/utils/test_typing_forward_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/utils/test_typing_forward_refs.py -------------------------------------------------------------------------------- /tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/views/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/views/schema.py -------------------------------------------------------------------------------- /tests/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/websockets/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/websockets/conftest.py -------------------------------------------------------------------------------- /tests/websockets/test_graphql_transport_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/websockets/test_graphql_transport_ws.py -------------------------------------------------------------------------------- /tests/websockets/test_graphql_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/websockets/test_graphql_ws.py -------------------------------------------------------------------------------- /tests/websockets/test_websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/websockets/test_websockets.py -------------------------------------------------------------------------------- /tests/websockets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strawberry-graphql/strawberry/HEAD/tests/websockets/views.py --------------------------------------------------------------------------------