├── .flake8 ├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ └── open-a-graphql-core-legacy-issue.md ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── CODEOWNERS ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── autolinter ├── conftest.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── graphql ├── __init__.py ├── backend │ ├── __init__.py │ ├── base.py │ ├── cache.py │ ├── compiled.py │ ├── core.py │ ├── decider.py │ ├── quiver_cloud.py │ └── tests │ │ ├── __init__.py │ │ ├── schema.py │ │ ├── test_base.py │ │ ├── test_cache.py │ │ ├── test_compileddocument.py │ │ ├── test_core.py │ │ ├── test_decider.py │ │ └── test_document.py ├── error │ ├── __init__.py │ ├── base.py │ ├── format_error.py │ ├── located_error.py │ ├── syntax_error.py │ └── tests │ │ ├── __init__.py │ │ └── test_base.py ├── execution │ ├── __init__.py │ ├── base.py │ ├── executor.py │ ├── executors │ │ ├── __init__.py │ │ ├── asyncio.py │ │ ├── asyncio_utils.py │ │ ├── gevent.py │ │ ├── process.py │ │ ├── sync.py │ │ ├── thread.py │ │ └── utils.py │ ├── middleware.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_abstract.py │ │ ├── test_benchmark.py │ │ ├── test_dataloader.py │ │ ├── test_directives.py │ │ ├── test_execute_schema.py │ │ ├── test_executor.py │ │ ├── test_executor_asyncio.py │ │ ├── test_executor_gevent.py │ │ ├── test_executor_thread.py │ │ ├── test_format_error.py │ │ ├── test_lists.py │ │ ├── test_located_error.py │ │ ├── test_middleware.py │ │ ├── test_mutations.py │ │ ├── test_nonnull.py │ │ ├── test_resolve.py │ │ ├── test_subscribe.py │ │ ├── test_union_interface.py │ │ ├── test_variables.py │ │ └── utils.py │ ├── utils.py │ └── values.py ├── flags.py ├── graphql.py ├── language │ ├── __init__.py │ ├── ast.py │ ├── base.py │ ├── lexer.py │ ├── location.py │ ├── parser.py │ ├── printer.py │ ├── source.py │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures.py │ │ ├── test_ast.py │ │ ├── test_lexer.py │ │ ├── test_location.py │ │ ├── test_parser.py │ │ ├── test_printer.py │ │ ├── test_schema_parser.py │ │ ├── test_schema_printer.py │ │ ├── test_visitor.py │ │ └── test_visitor_meta.py │ ├── visitor.py │ └── visitor_meta.py ├── py.typed ├── pyutils │ ├── __init__.py │ ├── cached_property.py │ ├── compat.py │ ├── contain_subset.py │ ├── default_ordered_dict.py │ ├── enum.py │ ├── ordereddict.py │ ├── pair_set.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_contain_subset.py │ │ ├── test_default_ordered_dict.py │ │ ├── test_enum.py │ │ └── test_pair_set.py │ └── version.py ├── type │ ├── __init__.py │ ├── definition.py │ ├── directives.py │ ├── introspection.py │ ├── scalars.py │ ├── schema.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_definition.py │ │ ├── test_enum_type.py │ │ ├── test_introspection.py │ │ ├── test_schema.py │ │ ├── test_serialization.py │ │ └── test_validation.py │ └── typemap.py ├── utils │ ├── __init__.py │ ├── assert_valid_name.py │ ├── ast_from_value.py │ ├── ast_to_code.py │ ├── ast_to_dict.py │ ├── base.py │ ├── build_ast_schema.py │ ├── build_client_schema.py │ ├── concat_ast.py │ ├── extend_schema.py │ ├── get_field_def.py │ ├── get_operation_ast.py │ ├── introspection_query.py │ ├── is_valid_literal_value.py │ ├── is_valid_value.py │ ├── quoted_or_list.py │ ├── schema_printer.py │ ├── suggestion_list.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_ast_from_value.py │ │ ├── test_ast_to_code.py │ │ ├── test_ast_to_dict.py │ │ ├── test_build_ast_schema.py │ │ ├── test_build_client_schema.py │ │ ├── test_concat_ast.py │ │ ├── test_extend_schema.py │ │ ├── test_get_operation_ast.py │ │ ├── test_quoted_or_list.py │ │ ├── test_schema_printer.py │ │ ├── test_suggestion_list.py │ │ └── test_type_comparators.py │ ├── type_comparators.py │ ├── type_from_ast.py │ ├── type_info.py │ ├── undefined.py │ └── value_from_ast.py └── validation │ ├── __init__.py │ ├── rules │ ├── __init__.py │ ├── arguments_of_correct_type.py │ ├── base.py │ ├── default_values_of_correct_type.py │ ├── fields_on_correct_type.py │ ├── fragments_on_composite_types.py │ ├── known_argument_names.py │ ├── known_directives.py │ ├── known_fragment_names.py │ ├── known_type_names.py │ ├── lone_anonymous_operation.py │ ├── no_fragment_cycles.py │ ├── no_undefined_variables.py │ ├── no_unused_fragments.py │ ├── no_unused_variables.py │ ├── overlapping_fields_can_be_merged.py │ ├── possible_fragment_spreads.py │ ├── provided_non_null_arguments.py │ ├── scalar_leafs.py │ ├── unique_argument_names.py │ ├── unique_fragment_names.py │ ├── unique_input_field_names.py │ ├── unique_operation_names.py │ ├── unique_variable_names.py │ ├── variables_are_input_types.py │ └── variables_in_allowed_position.py │ ├── tests │ ├── __init__.py │ ├── test_arguments_of_correct_type.py │ ├── test_default_values_of_correct_type.py │ ├── test_fields_on_correct_type.py │ ├── test_fragments_on_composite_types.py │ ├── test_known_argument_names.py │ ├── test_known_directives.py │ ├── test_known_fragment_names.py │ ├── test_known_type_names.py │ ├── test_lone_anonymous_operation.py │ ├── test_no_fragment_cycles.py │ ├── test_no_undefined_variables.py │ ├── test_no_unused_fragments.py │ ├── test_no_unused_variables.py │ ├── test_overlapping_fields_can_be_merged.py │ ├── test_possible_fragment_spreads.py │ ├── test_provided_non_null_arguments.py │ ├── test_scalar_leafs.py │ ├── test_unique_argument_names.py │ ├── test_unique_fragment_names.py │ ├── test_unique_input_field_names.py │ ├── test_unique_operation_names.py │ ├── test_unique_variable_names.py │ ├── test_validation.py │ ├── test_variables_are_input_types.py │ ├── test_variables_in_allowed_position.py │ └── utils.py │ └── validation.py ├── scripts ├── ast.ast ├── casing.py ├── fb_ast.py └── generate_ast.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── starwars │ ├── __init__.py │ ├── starwars_fixtures.py │ ├── starwars_schema.py │ ├── test_introspection.py │ ├── test_query.py │ └── test_validation.py ├── tests_py35 ├── __init__.py └── core_execution │ ├── __init__.py │ └── test_asyncio_executor.py └── tox.ini /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/open-a-graphql-core-legacy-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/.github/ISSUE_TEMPLATE/open-a-graphql-core-legacy-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | / @syrusakbary @ekampf @dan98765 @projectcheshire @cito 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/README.md -------------------------------------------------------------------------------- /bin/autolinter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/bin/autolinter -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /graphql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/__init__.py -------------------------------------------------------------------------------- /graphql/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/__init__.py -------------------------------------------------------------------------------- /graphql/backend/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/base.py -------------------------------------------------------------------------------- /graphql/backend/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/cache.py -------------------------------------------------------------------------------- /graphql/backend/compiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/compiled.py -------------------------------------------------------------------------------- /graphql/backend/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/core.py -------------------------------------------------------------------------------- /graphql/backend/decider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/decider.py -------------------------------------------------------------------------------- /graphql/backend/quiver_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/quiver_cloud.py -------------------------------------------------------------------------------- /graphql/backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/backend/tests/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/schema.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_base.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_cache.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_compileddocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_compileddocument.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_core.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_decider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_decider.py -------------------------------------------------------------------------------- /graphql/backend/tests/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/backend/tests/test_document.py -------------------------------------------------------------------------------- /graphql/error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/__init__.py -------------------------------------------------------------------------------- /graphql/error/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/base.py -------------------------------------------------------------------------------- /graphql/error/format_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/format_error.py -------------------------------------------------------------------------------- /graphql/error/located_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/located_error.py -------------------------------------------------------------------------------- /graphql/error/syntax_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/syntax_error.py -------------------------------------------------------------------------------- /graphql/error/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/error/tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/error/tests/test_base.py -------------------------------------------------------------------------------- /graphql/execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/__init__.py -------------------------------------------------------------------------------- /graphql/execution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/base.py -------------------------------------------------------------------------------- /graphql/execution/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executor.py -------------------------------------------------------------------------------- /graphql/execution/executors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/execution/executors/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/asyncio.py -------------------------------------------------------------------------------- /graphql/execution/executors/asyncio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/asyncio_utils.py -------------------------------------------------------------------------------- /graphql/execution/executors/gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/gevent.py -------------------------------------------------------------------------------- /graphql/execution/executors/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/process.py -------------------------------------------------------------------------------- /graphql/execution/executors/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/sync.py -------------------------------------------------------------------------------- /graphql/execution/executors/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/thread.py -------------------------------------------------------------------------------- /graphql/execution/executors/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/executors/utils.py -------------------------------------------------------------------------------- /graphql/execution/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/middleware.py -------------------------------------------------------------------------------- /graphql/execution/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/execution/tests/test_abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_abstract.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_benchmark.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_dataloader.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_directives.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_execute_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_execute_schema.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_executor.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_executor_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_executor_asyncio.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_executor_gevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_executor_gevent.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_executor_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_executor_thread.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_format_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_format_error.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_lists.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_located_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_located_error.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_middleware.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_mutations.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_nonnull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_nonnull.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_resolve.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_subscribe.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_union_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_union_interface.py -------------------------------------------------------------------------------- /graphql/execution/tests/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/test_variables.py -------------------------------------------------------------------------------- /graphql/execution/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/tests/utils.py -------------------------------------------------------------------------------- /graphql/execution/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/utils.py -------------------------------------------------------------------------------- /graphql/execution/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/execution/values.py -------------------------------------------------------------------------------- /graphql/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/flags.py -------------------------------------------------------------------------------- /graphql/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/graphql.py -------------------------------------------------------------------------------- /graphql/language/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/language/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/ast.py -------------------------------------------------------------------------------- /graphql/language/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/base.py -------------------------------------------------------------------------------- /graphql/language/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/lexer.py -------------------------------------------------------------------------------- /graphql/language/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/location.py -------------------------------------------------------------------------------- /graphql/language/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/parser.py -------------------------------------------------------------------------------- /graphql/language/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/printer.py -------------------------------------------------------------------------------- /graphql/language/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/source.py -------------------------------------------------------------------------------- /graphql/language/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/language/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/fixtures.py -------------------------------------------------------------------------------- /graphql/language/tests/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_ast.py -------------------------------------------------------------------------------- /graphql/language/tests/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_lexer.py -------------------------------------------------------------------------------- /graphql/language/tests/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_location.py -------------------------------------------------------------------------------- /graphql/language/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_parser.py -------------------------------------------------------------------------------- /graphql/language/tests/test_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_printer.py -------------------------------------------------------------------------------- /graphql/language/tests/test_schema_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_schema_parser.py -------------------------------------------------------------------------------- /graphql/language/tests/test_schema_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_schema_printer.py -------------------------------------------------------------------------------- /graphql/language/tests/test_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_visitor.py -------------------------------------------------------------------------------- /graphql/language/tests/test_visitor_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/tests/test_visitor_meta.py -------------------------------------------------------------------------------- /graphql/language/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/visitor.py -------------------------------------------------------------------------------- /graphql/language/visitor_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/language/visitor_meta.py -------------------------------------------------------------------------------- /graphql/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/pyutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/pyutils/cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/cached_property.py -------------------------------------------------------------------------------- /graphql/pyutils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/compat.py -------------------------------------------------------------------------------- /graphql/pyutils/contain_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/contain_subset.py -------------------------------------------------------------------------------- /graphql/pyutils/default_ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/default_ordered_dict.py -------------------------------------------------------------------------------- /graphql/pyutils/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/enum.py -------------------------------------------------------------------------------- /graphql/pyutils/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/ordereddict.py -------------------------------------------------------------------------------- /graphql/pyutils/pair_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/pair_set.py -------------------------------------------------------------------------------- /graphql/pyutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/pyutils/tests/test_contain_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/tests/test_contain_subset.py -------------------------------------------------------------------------------- /graphql/pyutils/tests/test_default_ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/tests/test_default_ordered_dict.py -------------------------------------------------------------------------------- /graphql/pyutils/tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/tests/test_enum.py -------------------------------------------------------------------------------- /graphql/pyutils/tests/test_pair_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/tests/test_pair_set.py -------------------------------------------------------------------------------- /graphql/pyutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/pyutils/version.py -------------------------------------------------------------------------------- /graphql/type/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/__init__.py -------------------------------------------------------------------------------- /graphql/type/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/definition.py -------------------------------------------------------------------------------- /graphql/type/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/directives.py -------------------------------------------------------------------------------- /graphql/type/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/introspection.py -------------------------------------------------------------------------------- /graphql/type/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/scalars.py -------------------------------------------------------------------------------- /graphql/type/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/schema.py -------------------------------------------------------------------------------- /graphql/type/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/type/tests/test_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_definition.py -------------------------------------------------------------------------------- /graphql/type/tests/test_enum_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_enum_type.py -------------------------------------------------------------------------------- /graphql/type/tests/test_introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_introspection.py -------------------------------------------------------------------------------- /graphql/type/tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_schema.py -------------------------------------------------------------------------------- /graphql/type/tests/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_serialization.py -------------------------------------------------------------------------------- /graphql/type/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/tests/test_validation.py -------------------------------------------------------------------------------- /graphql/type/typemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/type/typemap.py -------------------------------------------------------------------------------- /graphql/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/utils/assert_valid_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/assert_valid_name.py -------------------------------------------------------------------------------- /graphql/utils/ast_from_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/ast_from_value.py -------------------------------------------------------------------------------- /graphql/utils/ast_to_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/ast_to_code.py -------------------------------------------------------------------------------- /graphql/utils/ast_to_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/ast_to_dict.py -------------------------------------------------------------------------------- /graphql/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/base.py -------------------------------------------------------------------------------- /graphql/utils/build_ast_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/build_ast_schema.py -------------------------------------------------------------------------------- /graphql/utils/build_client_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/build_client_schema.py -------------------------------------------------------------------------------- /graphql/utils/concat_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/concat_ast.py -------------------------------------------------------------------------------- /graphql/utils/extend_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/extend_schema.py -------------------------------------------------------------------------------- /graphql/utils/get_field_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/get_field_def.py -------------------------------------------------------------------------------- /graphql/utils/get_operation_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/get_operation_ast.py -------------------------------------------------------------------------------- /graphql/utils/introspection_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/introspection_query.py -------------------------------------------------------------------------------- /graphql/utils/is_valid_literal_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/is_valid_literal_value.py -------------------------------------------------------------------------------- /graphql/utils/is_valid_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/is_valid_value.py -------------------------------------------------------------------------------- /graphql/utils/quoted_or_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/quoted_or_list.py -------------------------------------------------------------------------------- /graphql/utils/schema_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/schema_printer.py -------------------------------------------------------------------------------- /graphql/utils/suggestion_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/suggestion_list.py -------------------------------------------------------------------------------- /graphql/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/utils/tests/test_ast_from_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_ast_from_value.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_ast_to_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_ast_to_code.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_ast_to_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_ast_to_dict.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_build_ast_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_build_ast_schema.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_build_client_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_build_client_schema.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_concat_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_concat_ast.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_extend_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_extend_schema.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_get_operation_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_get_operation_ast.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_quoted_or_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_quoted_or_list.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_schema_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_schema_printer.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_suggestion_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_suggestion_list.py -------------------------------------------------------------------------------- /graphql/utils/tests/test_type_comparators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/tests/test_type_comparators.py -------------------------------------------------------------------------------- /graphql/utils/type_comparators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/type_comparators.py -------------------------------------------------------------------------------- /graphql/utils/type_from_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/type_from_ast.py -------------------------------------------------------------------------------- /graphql/utils/type_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/type_info.py -------------------------------------------------------------------------------- /graphql/utils/undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/undefined.py -------------------------------------------------------------------------------- /graphql/utils/value_from_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/utils/value_from_ast.py -------------------------------------------------------------------------------- /graphql/validation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/__init__.py -------------------------------------------------------------------------------- /graphql/validation/rules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/__init__.py -------------------------------------------------------------------------------- /graphql/validation/rules/arguments_of_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/arguments_of_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/rules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/base.py -------------------------------------------------------------------------------- /graphql/validation/rules/default_values_of_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/default_values_of_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/rules/fields_on_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/fields_on_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/rules/fragments_on_composite_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/fragments_on_composite_types.py -------------------------------------------------------------------------------- /graphql/validation/rules/known_argument_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/known_argument_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/known_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/known_directives.py -------------------------------------------------------------------------------- /graphql/validation/rules/known_fragment_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/known_fragment_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/known_type_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/known_type_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/lone_anonymous_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/lone_anonymous_operation.py -------------------------------------------------------------------------------- /graphql/validation/rules/no_fragment_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/no_fragment_cycles.py -------------------------------------------------------------------------------- /graphql/validation/rules/no_undefined_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/no_undefined_variables.py -------------------------------------------------------------------------------- /graphql/validation/rules/no_unused_fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/no_unused_fragments.py -------------------------------------------------------------------------------- /graphql/validation/rules/no_unused_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/no_unused_variables.py -------------------------------------------------------------------------------- /graphql/validation/rules/overlapping_fields_can_be_merged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/overlapping_fields_can_be_merged.py -------------------------------------------------------------------------------- /graphql/validation/rules/possible_fragment_spreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/possible_fragment_spreads.py -------------------------------------------------------------------------------- /graphql/validation/rules/provided_non_null_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/provided_non_null_arguments.py -------------------------------------------------------------------------------- /graphql/validation/rules/scalar_leafs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/scalar_leafs.py -------------------------------------------------------------------------------- /graphql/validation/rules/unique_argument_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/unique_argument_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/unique_fragment_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/unique_fragment_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/unique_input_field_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/unique_input_field_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/unique_operation_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/unique_operation_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/unique_variable_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/unique_variable_names.py -------------------------------------------------------------------------------- /graphql/validation/rules/variables_are_input_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/variables_are_input_types.py -------------------------------------------------------------------------------- /graphql/validation/rules/variables_in_allowed_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/rules/variables_in_allowed_position.py -------------------------------------------------------------------------------- /graphql/validation/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graphql/validation/tests/test_arguments_of_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_arguments_of_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_default_values_of_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_default_values_of_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_fields_on_correct_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_fields_on_correct_type.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_fragments_on_composite_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_fragments_on_composite_types.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_known_argument_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_known_argument_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_known_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_known_directives.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_known_fragment_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_known_fragment_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_known_type_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_known_type_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_lone_anonymous_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_lone_anonymous_operation.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_no_fragment_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_no_fragment_cycles.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_no_undefined_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_no_undefined_variables.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_no_unused_fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_no_unused_fragments.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_no_unused_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_no_unused_variables.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_overlapping_fields_can_be_merged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_overlapping_fields_can_be_merged.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_possible_fragment_spreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_possible_fragment_spreads.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_provided_non_null_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_provided_non_null_arguments.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_scalar_leafs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_scalar_leafs.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_unique_argument_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_unique_argument_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_unique_fragment_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_unique_fragment_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_unique_input_field_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_unique_input_field_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_unique_operation_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_unique_operation_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_unique_variable_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_unique_variable_names.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_validation.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_variables_are_input_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_variables_are_input_types.py -------------------------------------------------------------------------------- /graphql/validation/tests/test_variables_in_allowed_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/test_variables_in_allowed_position.py -------------------------------------------------------------------------------- /graphql/validation/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/tests/utils.py -------------------------------------------------------------------------------- /graphql/validation/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/graphql/validation/validation.py -------------------------------------------------------------------------------- /scripts/ast.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/scripts/ast.ast -------------------------------------------------------------------------------- /scripts/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/scripts/casing.py -------------------------------------------------------------------------------- /scripts/fb_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/scripts/fb_ast.py -------------------------------------------------------------------------------- /scripts/generate_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/scripts/generate_ast.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/starwars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/starwars/starwars_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests/starwars/starwars_fixtures.py -------------------------------------------------------------------------------- /tests/starwars/starwars_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests/starwars/starwars_schema.py -------------------------------------------------------------------------------- /tests/starwars/test_introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests/starwars/test_introspection.py -------------------------------------------------------------------------------- /tests/starwars/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests/starwars/test_query.py -------------------------------------------------------------------------------- /tests/starwars/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests/starwars/test_validation.py -------------------------------------------------------------------------------- /tests_py35/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_py35/core_execution/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "jake" 2 | -------------------------------------------------------------------------------- /tests_py35/core_execution/test_asyncio_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tests_py35/core_execution/test_asyncio_executor.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphql-python/graphql-core-legacy/HEAD/tox.ini --------------------------------------------------------------------------------