├── .github └── workflows │ ├── build.yml │ ├── prepare_release.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── GUIDE.md ├── LICENSE ├── README.md ├── ariadne_graphql_proxy ├── __about__.py ├── __init__.py ├── cache │ ├── __init__.py │ ├── backend.py │ ├── cache_key.py │ ├── cached_resolver.py │ ├── serializer.py │ └── simple_cached_resolver.py ├── context_value.py ├── contrib │ ├── __init__.py │ ├── aws │ │ ├── __init__.py │ │ └── cache_backend.py │ ├── cloudflare │ │ ├── __init__.py │ │ └── cache_backend.py │ └── imgix │ │ ├── __init__.py │ │ └── query_params_resolver.py ├── copy.py ├── errors.py ├── foreign_key_resolver.py ├── get_operation.py ├── merge.py ├── narrow_graphql_query.py ├── proxy_resolver.py ├── proxy_root_value.py ├── proxy_schema.py ├── py.typed ├── query_filter.py ├── remote_schema.py ├── resolvers.py ├── selections.py ├── standard_types.py ├── str_to_field.py └── unwrap_type.py ├── pyproject.toml └── tests ├── __init__.py ├── cache ├── __init__.py ├── test_base_cache_backend.py ├── test_cached_resolver.py ├── test_get_info_cache_key.py ├── test_get_operation_cache_key.py ├── test_get_simple_cache_key.py ├── test_in_memory_cache.py ├── test_serializer.py └── test_simple_cached_resolver.py ├── conftest.py ├── contrib ├── __init__.py ├── aws │ ├── __init__.py │ └── test_cache_backend.py ├── cloudflare │ ├── __init__.py │ └── test_cache_backend.py └── imgix │ ├── __init__.py │ └── test_query_params_resolver.py ├── test_copy_argument_type.py ├── test_copy_arguments.py ├── test_copy_directive.py ├── test_copy_directives.py ├── test_copy_enum.py ├── test_copy_field.py ├── test_copy_field_type.py ├── test_copy_input.py ├── test_copy_input_field.py ├── test_copy_input_field_type.py ├── test_copy_interface.py ├── test_copy_object.py ├── test_copy_scalar.py ├── test_copy_schema.py ├── test_copy_schema_subset.py ├── test_copy_schema_types.py ├── test_copy_union.py ├── test_foreign_key_resolver.py ├── test_get_operation.py ├── test_get_remote_schema.py ├── test_merge_args.py ├── test_merge_enums.py ├── test_merge_enums_values.py ├── test_merge_fields.py ├── test_merge_inputs.py ├── test_merge_inputs_fields.py ├── test_merge_interfaces.py ├── test_merge_objects.py ├── test_merge_scalars.py ├── test_merge_schemas.py ├── test_merge_selection_sets.py ├── test_merge_selections.py ├── test_merge_types.py ├── test_merge_types_maps.py ├── test_merge_unions.py ├── test_narrow_graphql_query.py ├── test_proxy_resolver.py ├── test_proxy_root_value.py ├── test_proxy_schema.py ├── test_raise_upstream_error.py ├── test_set_resolver.py ├── test_str_to_field.py └── test_unset_resolver.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/prepare_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/.github/workflows/prepare_release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/README.md -------------------------------------------------------------------------------- /ariadne_graphql_proxy/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/__about__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/__init__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/__init__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/backend.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/cache_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/cache_key.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/cached_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/cached_resolver.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/serializer.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/cache/simple_cached_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/cache/simple_cached_resolver.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/context_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/context_value.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/aws/__init__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/aws/cache_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/aws/cache_backend.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/cloudflare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/cloudflare/__init__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/cloudflare/cache_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/cloudflare/cache_backend.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/imgix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/imgix/__init__.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/contrib/imgix/query_params_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/contrib/imgix/query_params_resolver.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/copy.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/errors.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/foreign_key_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/foreign_key_resolver.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/get_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/get_operation.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/merge.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/narrow_graphql_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/narrow_graphql_query.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/proxy_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/proxy_resolver.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/proxy_root_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/proxy_root_value.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/proxy_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/proxy_schema.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ariadne_graphql_proxy/query_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/query_filter.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/remote_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/remote_schema.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/resolvers.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/selections.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/standard_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/standard_types.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/str_to_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/str_to_field.py -------------------------------------------------------------------------------- /ariadne_graphql_proxy/unwrap_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/ariadne_graphql_proxy/unwrap_type.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cache/test_base_cache_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_base_cache_backend.py -------------------------------------------------------------------------------- /tests/cache/test_cached_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_cached_resolver.py -------------------------------------------------------------------------------- /tests/cache/test_get_info_cache_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_get_info_cache_key.py -------------------------------------------------------------------------------- /tests/cache/test_get_operation_cache_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_get_operation_cache_key.py -------------------------------------------------------------------------------- /tests/cache/test_get_simple_cache_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_get_simple_cache_key.py -------------------------------------------------------------------------------- /tests/cache/test_in_memory_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_in_memory_cache.py -------------------------------------------------------------------------------- /tests/cache/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_serializer.py -------------------------------------------------------------------------------- /tests/cache/test_simple_cached_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/cache/test_simple_cached_resolver.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/aws/test_cache_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/contrib/aws/test_cache_backend.py -------------------------------------------------------------------------------- /tests/contrib/cloudflare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/cloudflare/test_cache_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/contrib/cloudflare/test_cache_backend.py -------------------------------------------------------------------------------- /tests/contrib/imgix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/contrib/imgix/test_query_params_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/contrib/imgix/test_query_params_resolver.py -------------------------------------------------------------------------------- /tests/test_copy_argument_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_argument_type.py -------------------------------------------------------------------------------- /tests/test_copy_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_arguments.py -------------------------------------------------------------------------------- /tests/test_copy_directive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_directive.py -------------------------------------------------------------------------------- /tests/test_copy_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_directives.py -------------------------------------------------------------------------------- /tests/test_copy_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_enum.py -------------------------------------------------------------------------------- /tests/test_copy_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_field.py -------------------------------------------------------------------------------- /tests/test_copy_field_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_field_type.py -------------------------------------------------------------------------------- /tests/test_copy_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_input.py -------------------------------------------------------------------------------- /tests/test_copy_input_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_input_field.py -------------------------------------------------------------------------------- /tests/test_copy_input_field_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_input_field_type.py -------------------------------------------------------------------------------- /tests/test_copy_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_interface.py -------------------------------------------------------------------------------- /tests/test_copy_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_object.py -------------------------------------------------------------------------------- /tests/test_copy_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_scalar.py -------------------------------------------------------------------------------- /tests/test_copy_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_schema.py -------------------------------------------------------------------------------- /tests/test_copy_schema_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_schema_subset.py -------------------------------------------------------------------------------- /tests/test_copy_schema_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_schema_types.py -------------------------------------------------------------------------------- /tests/test_copy_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_copy_union.py -------------------------------------------------------------------------------- /tests/test_foreign_key_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_foreign_key_resolver.py -------------------------------------------------------------------------------- /tests/test_get_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_get_operation.py -------------------------------------------------------------------------------- /tests/test_get_remote_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_get_remote_schema.py -------------------------------------------------------------------------------- /tests/test_merge_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_args.py -------------------------------------------------------------------------------- /tests/test_merge_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_enums.py -------------------------------------------------------------------------------- /tests/test_merge_enums_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_enums_values.py -------------------------------------------------------------------------------- /tests/test_merge_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_fields.py -------------------------------------------------------------------------------- /tests/test_merge_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_inputs.py -------------------------------------------------------------------------------- /tests/test_merge_inputs_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_inputs_fields.py -------------------------------------------------------------------------------- /tests/test_merge_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_interfaces.py -------------------------------------------------------------------------------- /tests/test_merge_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_objects.py -------------------------------------------------------------------------------- /tests/test_merge_scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_scalars.py -------------------------------------------------------------------------------- /tests/test_merge_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_schemas.py -------------------------------------------------------------------------------- /tests/test_merge_selection_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_selection_sets.py -------------------------------------------------------------------------------- /tests/test_merge_selections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_selections.py -------------------------------------------------------------------------------- /tests/test_merge_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_types.py -------------------------------------------------------------------------------- /tests/test_merge_types_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_types_maps.py -------------------------------------------------------------------------------- /tests/test_merge_unions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_merge_unions.py -------------------------------------------------------------------------------- /tests/test_narrow_graphql_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_narrow_graphql_query.py -------------------------------------------------------------------------------- /tests/test_proxy_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_proxy_resolver.py -------------------------------------------------------------------------------- /tests/test_proxy_root_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_proxy_root_value.py -------------------------------------------------------------------------------- /tests/test_proxy_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_proxy_schema.py -------------------------------------------------------------------------------- /tests/test_raise_upstream_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_raise_upstream_error.py -------------------------------------------------------------------------------- /tests/test_set_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_set_resolver.py -------------------------------------------------------------------------------- /tests/test_str_to_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_str_to_field.py -------------------------------------------------------------------------------- /tests/test_unset_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirumee/ariadne-graphql-proxy/HEAD/tests/test_unset_resolver.py --------------------------------------------------------------------------------