TRAVIS_PYTHON_VERSION=3.7 TRAVIS_OS_NAME=linux <<<<<< ENV .coveragerc .gitignore .pydocstyle .pydocstyle_test .pylintrc .travis.yml AUTHORS.rst CHANGELOG.rst CODE_OF_CONDUCT.rst CONTRIBUTING.rst LICENSE.txt Pipfile Pipfile.lock README.rst TROUBLESHOOTING.rst codecov.yml docker-compose.yml docs/Makefile docs/make.bat docs/requirements.txt docs/source/about/changelog.rst docs/source/about/code_of_conduct.rst docs/source/about/contributing.rst docs/source/about/execution_model.rst docs/source/about/faq.rst docs/source/advanced_features/additional_tools.rst docs/source/advanced_features/macro_system.rst docs/source/advanced_features/schema_graph.rst docs/source/conf.py docs/source/index.rst docs/source/language_specification/definitions.rst docs/source/language_specification/query_directives.rst docs/source/language_specification/schema_types.rst docs/source/supported_databases/neo4j_and_redisgraph.rst docs/source/supported_databases/orientdb.rst docs/source/supported_databases/sql.rst graphql_compiler/__init__.py graphql_compiler/api/__init__.py graphql_compiler/api/orientdb.py graphql_compiler/api/redisgraph.py graphql_compiler/api/sql/__init__.py graphql_compiler/api/sql/mssql.py graphql_compiler/api/sql/mysql.py graphql_compiler/api/sql/postgres.py graphql_compiler/ast_manipulation.py graphql_compiler/backend.py graphql_compiler/compiler/__init__.py graphql_compiler/compiler/blocks.py graphql_compiler/compiler/common.py graphql_compiler/compiler/compiler_entities.py graphql_compiler/compiler/compiler_frontend.py graphql_compiler/compiler/context_helpers.py graphql_compiler/compiler/cypher_helpers.py graphql_compiler/compiler/cypher_query.py graphql_compiler/compiler/directive_helpers.py graphql_compiler/compiler/emit_cypher.py graphql_compiler/compiler/emit_gremlin.py graphql_compiler/compiler/emit_match.py graphql_compiler/compiler/emit_sql.py graphql_compiler/compiler/expressions.py graphql_compiler/compiler/filters.py graphql_compiler/compiler/helpers.py graphql_compiler/compiler/ir_lowering_common/__init__.py graphql_compiler/compiler/ir_lowering_common/common.py graphql_compiler/compiler/ir_lowering_common/location_renaming.py graphql_compiler/compiler/ir_lowering_cypher/__init__.py graphql_compiler/compiler/ir_lowering_cypher/ir_lowering.py graphql_compiler/compiler/ir_lowering_gremlin/__init__.py graphql_compiler/compiler/ir_lowering_gremlin/ir_lowering.py graphql_compiler/compiler/ir_lowering_match/__init__.py graphql_compiler/compiler/ir_lowering_match/between_lowering.py graphql_compiler/compiler/ir_lowering_match/ir_lowering.py graphql_compiler/compiler/ir_lowering_match/optional_traversal.py graphql_compiler/compiler/ir_lowering_match/utils.py graphql_compiler/compiler/ir_lowering_sql/__init__.py graphql_compiler/compiler/ir_sanity_checks.py graphql_compiler/compiler/match_query.py graphql_compiler/compiler/metadata.py graphql_compiler/compiler/sqlalchemy_extensions.py graphql_compiler/compiler/subclass.py graphql_compiler/compiler/validation.py graphql_compiler/compiler/workarounds/__init__.py graphql_compiler/compiler/workarounds/orientdb_class_with_while.py graphql_compiler/compiler/workarounds/orientdb_eval_scheduling.py graphql_compiler/compiler/workarounds/orientdb_query_execution.py graphql_compiler/cost_estimation/__init__.py graphql_compiler/cost_estimation/analysis.py graphql_compiler/cost_estimation/cardinality_estimator.py graphql_compiler/cost_estimation/filter_selectivity_utils.py graphql_compiler/cost_estimation/helpers.py graphql_compiler/cost_estimation/int_value_conversion.py graphql_compiler/cost_estimation/interval.py graphql_compiler/cost_estimation/statistics.py graphql_compiler/debugging_utils.py graphql_compiler/exceptions.py graphql_compiler/global_utils.py graphql_compiler/macros/__init__.py graphql_compiler/macros/macro_edge/__init__.py graphql_compiler/macros/macro_edge/ast_rewriting.py graphql_compiler/macros/macro_edge/ast_traversal.py graphql_compiler/macros/macro_edge/descriptor.py graphql_compiler/macros/macro_edge/directives.py graphql_compiler/macros/macro_edge/expansion.py graphql_compiler/macros/macro_edge/name_generation.py graphql_compiler/macros/macro_edge/reversal.py graphql_compiler/macros/macro_edge/validation.py graphql_compiler/macros/macro_expansion.py graphql_compiler/macros/validation.py graphql_compiler/post_processing/__init__.py graphql_compiler/post_processing/sql_post_processing.py graphql_compiler/query_formatting/__init__.py graphql_compiler/query_formatting/common.py graphql_compiler/query_formatting/cypher_formatting.py graphql_compiler/query_formatting/graphql_formatting.py graphql_compiler/query_formatting/gremlin_formatting.py graphql_compiler/query_formatting/match_formatting.py graphql_compiler/query_formatting/representations.py graphql_compiler/query_formatting/sql_formatting.py graphql_compiler/query_pagination/__init__.py graphql_compiler/query_pagination/pagination_planning.py graphql_compiler/query_pagination/parameter_generator.py graphql_compiler/query_pagination/query_parameterizer.py graphql_compiler/query_pagination/typedefs.py graphql_compiler/schema/__init__.py graphql_compiler/schema/schema_info.py graphql_compiler/schema/typedefs.py graphql_compiler/schema_generation/__init__.py graphql_compiler/schema_generation/exceptions.py graphql_compiler/schema_generation/graphql_schema.py graphql_compiler/schema_generation/orientdb/__init__.py graphql_compiler/schema_generation/orientdb/schema_graph_builder.py graphql_compiler/schema_generation/orientdb/schema_properties.py graphql_compiler/schema_generation/orientdb/utils.py graphql_compiler/schema_generation/schema_graph.py graphql_compiler/schema_generation/sqlalchemy/__init__.py graphql_compiler/schema_generation/sqlalchemy/edge_descriptors.py graphql_compiler/schema_generation/sqlalchemy/scalar_type_mapper.py graphql_compiler/schema_generation/sqlalchemy/schema_graph_builder.py graphql_compiler/schema_generation/sqlalchemy/sqlalchemy_reflector.py graphql_compiler/schema_generation/sqlalchemy/utils.py graphql_compiler/schema_transformation/__init__.py graphql_compiler/schema_transformation/make_query_plan.py graphql_compiler/schema_transformation/merge_schemas.py graphql_compiler/schema_transformation/rename_query.py graphql_compiler/schema_transformation/rename_schema.py graphql_compiler/schema_transformation/split_query.py graphql_compiler/schema_transformation/utils.py graphql_compiler/tests/__init__.py graphql_compiler/tests/complex_nested_optionals_output.sql graphql_compiler/tests/conftest.py graphql_compiler/tests/integration_tests/__init__.py graphql_compiler/tests/integration_tests/integration_backend_config.py graphql_compiler/tests/integration_tests/integration_test_helpers.py graphql_compiler/tests/integration_tests/test_backends_integration.py graphql_compiler/tests/schema_generation_tests/__init__.py graphql_compiler/tests/schema_generation_tests/test_orientdb_schema_generation.py graphql_compiler/tests/schema_generation_tests/test_sqlalchemy_schema_generation.py graphql_compiler/tests/schema_transformation_tests/__init__.py graphql_compiler/tests/schema_transformation_tests/example_schema.py graphql_compiler/tests/schema_transformation_tests/input_schema_strings.py graphql_compiler/tests/schema_transformation_tests/test_check_schema_valid.py graphql_compiler/tests/schema_transformation_tests/test_make_query_plan.py graphql_compiler/tests/schema_transformation_tests/test_merge_schemas.py graphql_compiler/tests/schema_transformation_tests/test_rename_query.py graphql_compiler/tests/schema_transformation_tests/test_rename_schema.py graphql_compiler/tests/schema_transformation_tests/test_split_query.py graphql_compiler/tests/snapshot_tests/__init__.py graphql_compiler/tests/snapshot_tests/snapshots/__init__.py graphql_compiler/tests/snapshot_tests/snapshots/snap_test_orientdb_match_query.py graphql_compiler/tests/snapshot_tests/test_cost_estimation.py graphql_compiler/tests/snapshot_tests/test_cost_estimation_analysis.py graphql_compiler/tests/snapshot_tests/test_orientdb_match_query.py graphql_compiler/tests/snapshot_tests/test_query_pagination.py graphql_compiler/tests/test_backend.py graphql_compiler/tests/test_compiler.py graphql_compiler/tests/test_data_tools/__init__.py graphql_compiler/tests/test_data_tools/data_tool.py graphql_compiler/tests/test_data_tools/neo4j_graph.py graphql_compiler/tests/test_data_tools/orientdb_graph.py graphql_compiler/tests/test_data_tools/redisgraph_graph.py graphql_compiler/tests/test_data_tools/schema.py graphql_compiler/tests/test_data_tools/schema.sql graphql_compiler/tests/test_data_tools/snapshot_data/commands.sql graphql_compiler/tests/test_emit_output.py graphql_compiler/tests/test_end_to_end.py graphql_compiler/tests/test_explain_info.py graphql_compiler/tests/test_graphql_pretty_print.py graphql_compiler/tests/test_helpers.py graphql_compiler/tests/test_input_data.py graphql_compiler/tests/test_ir_generation.py graphql_compiler/tests/test_ir_generation_errors.py graphql_compiler/tests/test_ir_lowering.py graphql_compiler/tests/test_location.py graphql_compiler/tests/test_macro_expansion.py graphql_compiler/tests/test_macro_expansion_errors.py graphql_compiler/tests/test_macro_schema.py graphql_compiler/tests/test_macro_validation.py graphql_compiler/tests/test_post_processing.py graphql_compiler/tests/test_safe_match_and_gremlin.py graphql_compiler/tests/test_schema.py graphql_compiler/tests/test_schema_fingerprint.py graphql_compiler/tests/test_sqlalchemy_extensions.py graphql_compiler/tests/test_subclass.py graphql_compiler/tests/test_test_data.py graphql_compiler/tests/test_testing_invariants.py graphql_compiler/tool.py pyproject.toml scripts/copyright_line_check.sh scripts/fix_lint.sh scripts/generate_test_sql/__init__.py scripts/generate_test_sql/animals.py scripts/generate_test_sql/events.py scripts/generate_test_sql/species.py scripts/generate_test_sql/utils.py scripts/lint.sh scripts/make_new_release.sh setup.cfg setup.py <<<<<< network # path=/home/travis/build/kensho-technologies/graphql-compiler/coverage.xml /home/travis/build/kensho-technologies/graphql-compiler <<<<<< EOF