├── .cargo └── config.toml ├── .ci └── docker-compose.yml ├── .clang-format ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── rfc.md └── workflows │ ├── coverage.yml │ ├── docs.yml │ ├── pre-commit.yaml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── bin └── installcheck ├── docker-compose.yaml ├── dockerfiles ├── db │ ├── Dockerfile │ └── setup.sql └── graphiql │ └── index.html ├── docs ├── api.md ├── assets │ ├── demo_schema.graphql │ ├── demo_schema.sql │ ├── favicon.ico │ ├── quickstart_graphiql.png │ ├── supabase_add_schema.png │ ├── supabase_api_key.png │ ├── supabase_graphiql.png │ ├── supabase_graphiql_explore.png │ ├── supabase_graphiql_query_table.png │ ├── supabase_project_ref.png │ └── supabase_sql_editor.png ├── changelog.md ├── computed_fields.md ├── configuration.md ├── contributing.md ├── example_schema.md ├── functions.md ├── index.md ├── installation.md ├── quickstart.md ├── requirements_docs.txt ├── security.md ├── sql_interface.md ├── supabase.md ├── usage_with_apollo.md ├── usage_with_relay.md └── views.md ├── mkdocs.yaml ├── pg_graphql.control ├── sql ├── directives.sql ├── load_sql_config.sql ├── load_sql_context.sql ├── raise_exception.sql ├── resolve.sql └── schema_version.sql ├── src ├── bin │ └── pgrx_embed.rs ├── builder.rs ├── constants.rs ├── error.rs ├── graphql.rs ├── gson.rs ├── lib.rs ├── merge.rs ├── omit.rs ├── parser_util.rs ├── resolve.rs ├── sql_types.rs └── transpile.rs └── test ├── expected ├── aggregate.out ├── aggregate_directive.out ├── aliases.out ├── allow_camel_names.out ├── array_args_and_return_types.out ├── bigint_is_string.out ├── builtin_directives.out ├── comment_directive.out ├── comment_directive_description.out ├── compound_filters.out ├── empty_mutations.out ├── enum_mappings.out ├── extend_type_with_function.out ├── extend_type_with_function_relation.out ├── extend_type_with_generated_column.out ├── filter_by_node_id.out ├── fragment_on_mutation.out ├── fragment_on_query.out ├── function_calls.out ├── function_calls_default_args.out ├── function_calls_unsupported.out ├── function_return_row_is_selectable.out ├── function_return_view_has_pkey.out ├── inflection_fields.out ├── inflection_function.out ├── inflection_relationships.out ├── inflection_types.out ├── issue_163.out ├── issue_170.out ├── issue_225.out ├── issue_237_field_merging.out ├── issue_237_field_merging_mismatched.out ├── issue_300.out ├── issue_306.out ├── issue_312.out ├── issue_334_ambiguous_function.out ├── issue_337.out ├── issue_339_function_return_json.out ├── issue_339_function_return_table.out ├── issue_353_too_many_fields.out ├── issue_370_citext_as_string.out ├── issue_373.out ├── issue_377_enum_search_path.out ├── issue_409_fkey_rls_nullability.out ├── issue_444.out ├── issue_463.out ├── issue_511.out ├── issue_533.out ├── issue_542_partial_unique.out ├── issue_551_too_many_fields.out ├── issue_557_1_to_1_nullability.out ├── issue_581_missing_desc_on_schema.out ├── issue_fragment_spread_cycles.out ├── json_is_stringified.out ├── max_page_size.out ├── max_rows_directive.out ├── multi_column_primary_key.out ├── multiple_mutations.out ├── multiple_queries.out ├── mutation_delete.out ├── mutation_delete_variable.out ├── mutation_insert.out ├── mutation_update.out ├── null_argument.out ├── omit_exotic_types.out ├── omit_weird_names.out ├── operation_name.out ├── override_enum_name.out ├── override_field_name.out ├── override_func_field_name.out ├── override_relationship_field_name.out ├── override_type_name.out ├── page_info.out ├── permissions_connection_column.out ├── permissions_functions.out ├── permissions_node_column.out ├── permissions_table_level.out ├── permissions_types.out ├── primary_key_is_required.out ├── relationship_one_to_one.out ├── resolve___schema.out ├── resolve___type.out ├── resolve___typename.out ├── resolve_array_type.out ├── resolve_connection_filter.out ├── resolve_connection_named.out ├── resolve_connection_order_by.out ├── resolve_connection_pagination_args.out ├── resolve_connection_to_conn.out ├── resolve_connection_to_node.out ├── resolve_error_connection_edge_no_field.out ├── resolve_error_connection_edge_node_no_field.out ├── resolve_error_connection_no_field.out ├── resolve_error_from_parser.out ├── resolve_error_mutation_no_field.out ├── resolve_error_node_no_field.out ├── resolve_error_query_no_field.out ├── resolve_fragment.out ├── resolve_graphiql_schema.out ├── resolve_one.out ├── roundtrip_types.out ├── row_level_security.out ├── sqli_connection.out ├── string_filters.out ├── test_error_anon_and_named_operations.out ├── test_error_invalid_offset.out ├── test_error_multiple_anon_operations.out ├── test_error_mutation_transpilation.out ├── test_error_operation_name_not_found.out ├── test_error_operation_names_not_unique.out ├── test_error_query_transpilation.out ├── test_error_subscription.out ├── test_query__type.out ├── total_count.out ├── type_bigfloat.out ├── type_modifier_max_length.out ├── type_opaque.out ├── variable_default.out └── views_integration.out ├── fixtures.sql └── sql ├── aggregate.sql ├── aggregate_directive.sql ├── aliases.sql ├── allow_camel_names.sql ├── array_args_and_return_types.sql ├── bigint_is_string.sql ├── builtin_directives.sql ├── comment_directive.sql ├── comment_directive_description.sql ├── compound_filters.sql ├── empty_mutations.sql ├── enum_mappings.sql ├── extend_type_with_function.sql ├── extend_type_with_function_relation.sql ├── extend_type_with_generated_column.sql ├── filter_by_node_id.sql ├── fragment_on_mutation.sql ├── fragment_on_query.sql ├── function_calls.sql ├── function_calls_default_args.sql ├── function_calls_unsupported.sql ├── function_return_row_is_selectable.sql ├── function_return_view_has_pkey.sql ├── inflection_fields.sql ├── inflection_function.sql ├── inflection_relationships.sql ├── inflection_types.sql ├── issue_163.sql ├── issue_170.sql ├── issue_225.sql ├── issue_237_field_merging.sql ├── issue_237_field_merging_mismatched.sql ├── issue_300.sql ├── issue_306.sql ├── issue_312.sql ├── issue_334_ambiguous_function.sql ├── issue_337.sql ├── issue_339_function_return_json.sql ├── issue_339_function_return_table.sql ├── issue_353_too_many_fields.sql ├── issue_370_citext_as_string.sql ├── issue_373.sql ├── issue_377_enum_search_path.sql ├── issue_409_fkey_rls_nullability.sql ├── issue_444.sql ├── issue_463.sql ├── issue_511.sql ├── issue_533.sql ├── issue_542_partial_unique.sql ├── issue_551_too_many_fields.sql ├── issue_557_1_to_1_nullability.sql ├── issue_581_missing_desc_on_schema.sql ├── issue_fragment_spread_cycles.sql ├── json_is_stringified.sql ├── max_page_size.sql ├── max_rows_directive.sql ├── multi_column_primary_key.sql ├── multiple_mutations.sql ├── multiple_queries.sql ├── mutation_delete.sql ├── mutation_delete_variable.sql ├── mutation_insert.sql ├── mutation_update.sql ├── null_argument.sql ├── omit_exotic_types.sql ├── omit_weird_names.sql ├── operation_name.sql ├── override_enum_name.sql ├── override_field_name.sql ├── override_func_field_name.sql ├── override_relationship_field_name.sql ├── override_type_name.sql ├── page_info.sql ├── permissions_connection_column.sql ├── permissions_functions.sql ├── permissions_node_column.sql ├── permissions_table_level.sql ├── permissions_types.sql ├── primary_key_is_required.sql ├── relationship_one_to_one.sql ├── resolve___schema.sql ├── resolve___type.sql ├── resolve___typename.sql ├── resolve_array_type.sql ├── resolve_connection_filter.sql ├── resolve_connection_named.sql ├── resolve_connection_order_by.sql ├── resolve_connection_pagination_args.sql ├── resolve_connection_to_conn.sql ├── resolve_connection_to_node.sql ├── resolve_error_connection_edge_no_field.sql ├── resolve_error_connection_edge_node_no_field.sql ├── resolve_error_connection_no_field.sql ├── resolve_error_from_parser.sql ├── resolve_error_mutation_no_field.sql ├── resolve_error_node_no_field.sql ├── resolve_error_query_no_field.sql ├── resolve_fragment.sql ├── resolve_graphiql_schema.sql ├── resolve_one.sql ├── roundtrip_types.sql ├── row_level_security.sql ├── sqli_connection.sql ├── string_filters.sql ├── test_error_anon_and_named_operations.sql ├── test_error_invalid_offset.sql ├── test_error_multiple_anon_operations.sql ├── test_error_mutation_transpilation.sql ├── test_error_operation_name_not_found.sql ├── test_error_operation_names_not_unique.sql ├── test_error_query_transpilation.sql ├── test_error_subscription.sql ├── test_query__type.sql ├── total_count.sql ├── type_bigfloat.sql ├── type_modifier_max_length.sql ├── type_opaque.sql ├── variable_default.sql └── views_integration.sql /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.ci/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.ci/docker-compose.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/ISSUE_TEMPLATE/rfc.md -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/workflows/pre-commit.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/README.md -------------------------------------------------------------------------------- /bin/installcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/bin/installcheck -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dockerfiles/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/dockerfiles/db/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/db/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/dockerfiles/db/setup.sql -------------------------------------------------------------------------------- /dockerfiles/graphiql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/dockerfiles/graphiql/index.html -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/demo_schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/demo_schema.graphql -------------------------------------------------------------------------------- /docs/assets/demo_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/demo_schema.sql -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/quickstart_graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/quickstart_graphiql.png -------------------------------------------------------------------------------- /docs/assets/supabase_add_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_add_schema.png -------------------------------------------------------------------------------- /docs/assets/supabase_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_api_key.png -------------------------------------------------------------------------------- /docs/assets/supabase_graphiql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_graphiql.png -------------------------------------------------------------------------------- /docs/assets/supabase_graphiql_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_graphiql_explore.png -------------------------------------------------------------------------------- /docs/assets/supabase_graphiql_query_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_graphiql_query_table.png -------------------------------------------------------------------------------- /docs/assets/supabase_project_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_project_ref.png -------------------------------------------------------------------------------- /docs/assets/supabase_sql_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/assets/supabase_sql_editor.png -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/computed_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/computed_fields.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/example_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/example_schema.md -------------------------------------------------------------------------------- /docs/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/functions.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/requirements_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/requirements_docs.txt -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/sql_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/sql_interface.md -------------------------------------------------------------------------------- /docs/supabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/supabase.md -------------------------------------------------------------------------------- /docs/usage_with_apollo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/usage_with_apollo.md -------------------------------------------------------------------------------- /docs/usage_with_relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/usage_with_relay.md -------------------------------------------------------------------------------- /docs/views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/docs/views.md -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /pg_graphql.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/pg_graphql.control -------------------------------------------------------------------------------- /sql/directives.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/directives.sql -------------------------------------------------------------------------------- /sql/load_sql_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/load_sql_config.sql -------------------------------------------------------------------------------- /sql/load_sql_context.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/load_sql_context.sql -------------------------------------------------------------------------------- /sql/raise_exception.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/raise_exception.sql -------------------------------------------------------------------------------- /sql/resolve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/resolve.sql -------------------------------------------------------------------------------- /sql/schema_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/sql/schema_version.sql -------------------------------------------------------------------------------- /src/bin/pgrx_embed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/bin/pgrx_embed.rs -------------------------------------------------------------------------------- /src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/builder.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/graphql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/graphql.rs -------------------------------------------------------------------------------- /src/gson.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/gson.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/merge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/merge.rs -------------------------------------------------------------------------------- /src/omit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/omit.rs -------------------------------------------------------------------------------- /src/parser_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/parser_util.rs -------------------------------------------------------------------------------- /src/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/resolve.rs -------------------------------------------------------------------------------- /src/sql_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/sql_types.rs -------------------------------------------------------------------------------- /src/transpile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/src/transpile.rs -------------------------------------------------------------------------------- /test/expected/aggregate.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/aggregate.out -------------------------------------------------------------------------------- /test/expected/aggregate_directive.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/aggregate_directive.out -------------------------------------------------------------------------------- /test/expected/aliases.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/aliases.out -------------------------------------------------------------------------------- /test/expected/allow_camel_names.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/allow_camel_names.out -------------------------------------------------------------------------------- /test/expected/array_args_and_return_types.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/array_args_and_return_types.out -------------------------------------------------------------------------------- /test/expected/bigint_is_string.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/bigint_is_string.out -------------------------------------------------------------------------------- /test/expected/builtin_directives.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/builtin_directives.out -------------------------------------------------------------------------------- /test/expected/comment_directive.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/comment_directive.out -------------------------------------------------------------------------------- /test/expected/comment_directive_description.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/comment_directive_description.out -------------------------------------------------------------------------------- /test/expected/compound_filters.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/compound_filters.out -------------------------------------------------------------------------------- /test/expected/empty_mutations.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/empty_mutations.out -------------------------------------------------------------------------------- /test/expected/enum_mappings.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/enum_mappings.out -------------------------------------------------------------------------------- /test/expected/extend_type_with_function.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/extend_type_with_function.out -------------------------------------------------------------------------------- /test/expected/extend_type_with_function_relation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/extend_type_with_function_relation.out -------------------------------------------------------------------------------- /test/expected/extend_type_with_generated_column.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/extend_type_with_generated_column.out -------------------------------------------------------------------------------- /test/expected/filter_by_node_id.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/filter_by_node_id.out -------------------------------------------------------------------------------- /test/expected/fragment_on_mutation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/fragment_on_mutation.out -------------------------------------------------------------------------------- /test/expected/fragment_on_query.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/fragment_on_query.out -------------------------------------------------------------------------------- /test/expected/function_calls.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/function_calls.out -------------------------------------------------------------------------------- /test/expected/function_calls_default_args.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/function_calls_default_args.out -------------------------------------------------------------------------------- /test/expected/function_calls_unsupported.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/function_calls_unsupported.out -------------------------------------------------------------------------------- /test/expected/function_return_row_is_selectable.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/function_return_row_is_selectable.out -------------------------------------------------------------------------------- /test/expected/function_return_view_has_pkey.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/function_return_view_has_pkey.out -------------------------------------------------------------------------------- /test/expected/inflection_fields.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/inflection_fields.out -------------------------------------------------------------------------------- /test/expected/inflection_function.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/inflection_function.out -------------------------------------------------------------------------------- /test/expected/inflection_relationships.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/inflection_relationships.out -------------------------------------------------------------------------------- /test/expected/inflection_types.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/inflection_types.out -------------------------------------------------------------------------------- /test/expected/issue_163.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_163.out -------------------------------------------------------------------------------- /test/expected/issue_170.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_170.out -------------------------------------------------------------------------------- /test/expected/issue_225.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_225.out -------------------------------------------------------------------------------- /test/expected/issue_237_field_merging.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_237_field_merging.out -------------------------------------------------------------------------------- /test/expected/issue_237_field_merging_mismatched.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_237_field_merging_mismatched.out -------------------------------------------------------------------------------- /test/expected/issue_300.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_300.out -------------------------------------------------------------------------------- /test/expected/issue_306.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_306.out -------------------------------------------------------------------------------- /test/expected/issue_312.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_312.out -------------------------------------------------------------------------------- /test/expected/issue_334_ambiguous_function.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_334_ambiguous_function.out -------------------------------------------------------------------------------- /test/expected/issue_337.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_337.out -------------------------------------------------------------------------------- /test/expected/issue_339_function_return_json.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_339_function_return_json.out -------------------------------------------------------------------------------- /test/expected/issue_339_function_return_table.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_339_function_return_table.out -------------------------------------------------------------------------------- /test/expected/issue_353_too_many_fields.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_353_too_many_fields.out -------------------------------------------------------------------------------- /test/expected/issue_370_citext_as_string.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_370_citext_as_string.out -------------------------------------------------------------------------------- /test/expected/issue_373.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_373.out -------------------------------------------------------------------------------- /test/expected/issue_377_enum_search_path.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_377_enum_search_path.out -------------------------------------------------------------------------------- /test/expected/issue_409_fkey_rls_nullability.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_409_fkey_rls_nullability.out -------------------------------------------------------------------------------- /test/expected/issue_444.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_444.out -------------------------------------------------------------------------------- /test/expected/issue_463.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_463.out -------------------------------------------------------------------------------- /test/expected/issue_511.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_511.out -------------------------------------------------------------------------------- /test/expected/issue_533.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_533.out -------------------------------------------------------------------------------- /test/expected/issue_542_partial_unique.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_542_partial_unique.out -------------------------------------------------------------------------------- /test/expected/issue_551_too_many_fields.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_551_too_many_fields.out -------------------------------------------------------------------------------- /test/expected/issue_557_1_to_1_nullability.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_557_1_to_1_nullability.out -------------------------------------------------------------------------------- /test/expected/issue_581_missing_desc_on_schema.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_581_missing_desc_on_schema.out -------------------------------------------------------------------------------- /test/expected/issue_fragment_spread_cycles.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/issue_fragment_spread_cycles.out -------------------------------------------------------------------------------- /test/expected/json_is_stringified.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/json_is_stringified.out -------------------------------------------------------------------------------- /test/expected/max_page_size.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/max_page_size.out -------------------------------------------------------------------------------- /test/expected/max_rows_directive.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/max_rows_directive.out -------------------------------------------------------------------------------- /test/expected/multi_column_primary_key.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/multi_column_primary_key.out -------------------------------------------------------------------------------- /test/expected/multiple_mutations.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/multiple_mutations.out -------------------------------------------------------------------------------- /test/expected/multiple_queries.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/multiple_queries.out -------------------------------------------------------------------------------- /test/expected/mutation_delete.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/mutation_delete.out -------------------------------------------------------------------------------- /test/expected/mutation_delete_variable.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/mutation_delete_variable.out -------------------------------------------------------------------------------- /test/expected/mutation_insert.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/mutation_insert.out -------------------------------------------------------------------------------- /test/expected/mutation_update.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/mutation_update.out -------------------------------------------------------------------------------- /test/expected/null_argument.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/null_argument.out -------------------------------------------------------------------------------- /test/expected/omit_exotic_types.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/omit_exotic_types.out -------------------------------------------------------------------------------- /test/expected/omit_weird_names.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/omit_weird_names.out -------------------------------------------------------------------------------- /test/expected/operation_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/operation_name.out -------------------------------------------------------------------------------- /test/expected/override_enum_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/override_enum_name.out -------------------------------------------------------------------------------- /test/expected/override_field_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/override_field_name.out -------------------------------------------------------------------------------- /test/expected/override_func_field_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/override_func_field_name.out -------------------------------------------------------------------------------- /test/expected/override_relationship_field_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/override_relationship_field_name.out -------------------------------------------------------------------------------- /test/expected/override_type_name.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/override_type_name.out -------------------------------------------------------------------------------- /test/expected/page_info.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/page_info.out -------------------------------------------------------------------------------- /test/expected/permissions_connection_column.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/permissions_connection_column.out -------------------------------------------------------------------------------- /test/expected/permissions_functions.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/permissions_functions.out -------------------------------------------------------------------------------- /test/expected/permissions_node_column.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/permissions_node_column.out -------------------------------------------------------------------------------- /test/expected/permissions_table_level.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/permissions_table_level.out -------------------------------------------------------------------------------- /test/expected/permissions_types.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/permissions_types.out -------------------------------------------------------------------------------- /test/expected/primary_key_is_required.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/primary_key_is_required.out -------------------------------------------------------------------------------- /test/expected/relationship_one_to_one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/relationship_one_to_one.out -------------------------------------------------------------------------------- /test/expected/resolve___schema.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve___schema.out -------------------------------------------------------------------------------- /test/expected/resolve___type.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve___type.out -------------------------------------------------------------------------------- /test/expected/resolve___typename.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve___typename.out -------------------------------------------------------------------------------- /test/expected/resolve_array_type.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_array_type.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_filter.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_filter.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_named.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_named.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_order_by.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_order_by.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_pagination_args.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_pagination_args.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_to_conn.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_to_conn.out -------------------------------------------------------------------------------- /test/expected/resolve_connection_to_node.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_connection_to_node.out -------------------------------------------------------------------------------- /test/expected/resolve_error_connection_edge_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_connection_edge_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_error_connection_edge_node_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_connection_edge_node_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_error_connection_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_connection_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_error_from_parser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_from_parser.out -------------------------------------------------------------------------------- /test/expected/resolve_error_mutation_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_mutation_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_error_node_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_node_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_error_query_no_field.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_error_query_no_field.out -------------------------------------------------------------------------------- /test/expected/resolve_fragment.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_fragment.out -------------------------------------------------------------------------------- /test/expected/resolve_graphiql_schema.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_graphiql_schema.out -------------------------------------------------------------------------------- /test/expected/resolve_one.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/resolve_one.out -------------------------------------------------------------------------------- /test/expected/roundtrip_types.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/roundtrip_types.out -------------------------------------------------------------------------------- /test/expected/row_level_security.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/row_level_security.out -------------------------------------------------------------------------------- /test/expected/sqli_connection.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/sqli_connection.out -------------------------------------------------------------------------------- /test/expected/string_filters.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/string_filters.out -------------------------------------------------------------------------------- /test/expected/test_error_anon_and_named_operations.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_anon_and_named_operations.out -------------------------------------------------------------------------------- /test/expected/test_error_invalid_offset.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_invalid_offset.out -------------------------------------------------------------------------------- /test/expected/test_error_multiple_anon_operations.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_multiple_anon_operations.out -------------------------------------------------------------------------------- /test/expected/test_error_mutation_transpilation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_mutation_transpilation.out -------------------------------------------------------------------------------- /test/expected/test_error_operation_name_not_found.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_operation_name_not_found.out -------------------------------------------------------------------------------- /test/expected/test_error_operation_names_not_unique.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_operation_names_not_unique.out -------------------------------------------------------------------------------- /test/expected/test_error_query_transpilation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_query_transpilation.out -------------------------------------------------------------------------------- /test/expected/test_error_subscription.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_error_subscription.out -------------------------------------------------------------------------------- /test/expected/test_query__type.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/test_query__type.out -------------------------------------------------------------------------------- /test/expected/total_count.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/total_count.out -------------------------------------------------------------------------------- /test/expected/type_bigfloat.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/type_bigfloat.out -------------------------------------------------------------------------------- /test/expected/type_modifier_max_length.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/type_modifier_max_length.out -------------------------------------------------------------------------------- /test/expected/type_opaque.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/type_opaque.out -------------------------------------------------------------------------------- /test/expected/variable_default.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/variable_default.out -------------------------------------------------------------------------------- /test/expected/views_integration.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/expected/views_integration.out -------------------------------------------------------------------------------- /test/fixtures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/fixtures.sql -------------------------------------------------------------------------------- /test/sql/aggregate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/aggregate.sql -------------------------------------------------------------------------------- /test/sql/aggregate_directive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/aggregate_directive.sql -------------------------------------------------------------------------------- /test/sql/aliases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/aliases.sql -------------------------------------------------------------------------------- /test/sql/allow_camel_names.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/allow_camel_names.sql -------------------------------------------------------------------------------- /test/sql/array_args_and_return_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/array_args_and_return_types.sql -------------------------------------------------------------------------------- /test/sql/bigint_is_string.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/bigint_is_string.sql -------------------------------------------------------------------------------- /test/sql/builtin_directives.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/builtin_directives.sql -------------------------------------------------------------------------------- /test/sql/comment_directive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/comment_directive.sql -------------------------------------------------------------------------------- /test/sql/comment_directive_description.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/comment_directive_description.sql -------------------------------------------------------------------------------- /test/sql/compound_filters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/compound_filters.sql -------------------------------------------------------------------------------- /test/sql/empty_mutations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/empty_mutations.sql -------------------------------------------------------------------------------- /test/sql/enum_mappings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/enum_mappings.sql -------------------------------------------------------------------------------- /test/sql/extend_type_with_function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/extend_type_with_function.sql -------------------------------------------------------------------------------- /test/sql/extend_type_with_function_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/extend_type_with_function_relation.sql -------------------------------------------------------------------------------- /test/sql/extend_type_with_generated_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/extend_type_with_generated_column.sql -------------------------------------------------------------------------------- /test/sql/filter_by_node_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/filter_by_node_id.sql -------------------------------------------------------------------------------- /test/sql/fragment_on_mutation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/fragment_on_mutation.sql -------------------------------------------------------------------------------- /test/sql/fragment_on_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/fragment_on_query.sql -------------------------------------------------------------------------------- /test/sql/function_calls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/function_calls.sql -------------------------------------------------------------------------------- /test/sql/function_calls_default_args.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/function_calls_default_args.sql -------------------------------------------------------------------------------- /test/sql/function_calls_unsupported.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/function_calls_unsupported.sql -------------------------------------------------------------------------------- /test/sql/function_return_row_is_selectable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/function_return_row_is_selectable.sql -------------------------------------------------------------------------------- /test/sql/function_return_view_has_pkey.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/function_return_view_has_pkey.sql -------------------------------------------------------------------------------- /test/sql/inflection_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/inflection_fields.sql -------------------------------------------------------------------------------- /test/sql/inflection_function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/inflection_function.sql -------------------------------------------------------------------------------- /test/sql/inflection_relationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/inflection_relationships.sql -------------------------------------------------------------------------------- /test/sql/inflection_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/inflection_types.sql -------------------------------------------------------------------------------- /test/sql/issue_163.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_163.sql -------------------------------------------------------------------------------- /test/sql/issue_170.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_170.sql -------------------------------------------------------------------------------- /test/sql/issue_225.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_225.sql -------------------------------------------------------------------------------- /test/sql/issue_237_field_merging.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_237_field_merging.sql -------------------------------------------------------------------------------- /test/sql/issue_237_field_merging_mismatched.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_237_field_merging_mismatched.sql -------------------------------------------------------------------------------- /test/sql/issue_300.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_300.sql -------------------------------------------------------------------------------- /test/sql/issue_306.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_306.sql -------------------------------------------------------------------------------- /test/sql/issue_312.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_312.sql -------------------------------------------------------------------------------- /test/sql/issue_334_ambiguous_function.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_334_ambiguous_function.sql -------------------------------------------------------------------------------- /test/sql/issue_337.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_337.sql -------------------------------------------------------------------------------- /test/sql/issue_339_function_return_json.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_339_function_return_json.sql -------------------------------------------------------------------------------- /test/sql/issue_339_function_return_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_339_function_return_table.sql -------------------------------------------------------------------------------- /test/sql/issue_353_too_many_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_353_too_many_fields.sql -------------------------------------------------------------------------------- /test/sql/issue_370_citext_as_string.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_370_citext_as_string.sql -------------------------------------------------------------------------------- /test/sql/issue_373.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_373.sql -------------------------------------------------------------------------------- /test/sql/issue_377_enum_search_path.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_377_enum_search_path.sql -------------------------------------------------------------------------------- /test/sql/issue_409_fkey_rls_nullability.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_409_fkey_rls_nullability.sql -------------------------------------------------------------------------------- /test/sql/issue_444.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_444.sql -------------------------------------------------------------------------------- /test/sql/issue_463.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_463.sql -------------------------------------------------------------------------------- /test/sql/issue_511.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_511.sql -------------------------------------------------------------------------------- /test/sql/issue_533.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_533.sql -------------------------------------------------------------------------------- /test/sql/issue_542_partial_unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_542_partial_unique.sql -------------------------------------------------------------------------------- /test/sql/issue_551_too_many_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_551_too_many_fields.sql -------------------------------------------------------------------------------- /test/sql/issue_557_1_to_1_nullability.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_557_1_to_1_nullability.sql -------------------------------------------------------------------------------- /test/sql/issue_581_missing_desc_on_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_581_missing_desc_on_schema.sql -------------------------------------------------------------------------------- /test/sql/issue_fragment_spread_cycles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/issue_fragment_spread_cycles.sql -------------------------------------------------------------------------------- /test/sql/json_is_stringified.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/json_is_stringified.sql -------------------------------------------------------------------------------- /test/sql/max_page_size.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/max_page_size.sql -------------------------------------------------------------------------------- /test/sql/max_rows_directive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/max_rows_directive.sql -------------------------------------------------------------------------------- /test/sql/multi_column_primary_key.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/multi_column_primary_key.sql -------------------------------------------------------------------------------- /test/sql/multiple_mutations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/multiple_mutations.sql -------------------------------------------------------------------------------- /test/sql/multiple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/multiple_queries.sql -------------------------------------------------------------------------------- /test/sql/mutation_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/mutation_delete.sql -------------------------------------------------------------------------------- /test/sql/mutation_delete_variable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/mutation_delete_variable.sql -------------------------------------------------------------------------------- /test/sql/mutation_insert.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/mutation_insert.sql -------------------------------------------------------------------------------- /test/sql/mutation_update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/mutation_update.sql -------------------------------------------------------------------------------- /test/sql/null_argument.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/null_argument.sql -------------------------------------------------------------------------------- /test/sql/omit_exotic_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/omit_exotic_types.sql -------------------------------------------------------------------------------- /test/sql/omit_weird_names.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/omit_weird_names.sql -------------------------------------------------------------------------------- /test/sql/operation_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/operation_name.sql -------------------------------------------------------------------------------- /test/sql/override_enum_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/override_enum_name.sql -------------------------------------------------------------------------------- /test/sql/override_field_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/override_field_name.sql -------------------------------------------------------------------------------- /test/sql/override_func_field_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/override_func_field_name.sql -------------------------------------------------------------------------------- /test/sql/override_relationship_field_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/override_relationship_field_name.sql -------------------------------------------------------------------------------- /test/sql/override_type_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/override_type_name.sql -------------------------------------------------------------------------------- /test/sql/page_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/page_info.sql -------------------------------------------------------------------------------- /test/sql/permissions_connection_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/permissions_connection_column.sql -------------------------------------------------------------------------------- /test/sql/permissions_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/permissions_functions.sql -------------------------------------------------------------------------------- /test/sql/permissions_node_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/permissions_node_column.sql -------------------------------------------------------------------------------- /test/sql/permissions_table_level.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/permissions_table_level.sql -------------------------------------------------------------------------------- /test/sql/permissions_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/permissions_types.sql -------------------------------------------------------------------------------- /test/sql/primary_key_is_required.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/primary_key_is_required.sql -------------------------------------------------------------------------------- /test/sql/relationship_one_to_one.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/relationship_one_to_one.sql -------------------------------------------------------------------------------- /test/sql/resolve___schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve___schema.sql -------------------------------------------------------------------------------- /test/sql/resolve___type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve___type.sql -------------------------------------------------------------------------------- /test/sql/resolve___typename.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve___typename.sql -------------------------------------------------------------------------------- /test/sql/resolve_array_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_array_type.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_filter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_filter.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_named.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_named.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_order_by.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_order_by.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_pagination_args.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_pagination_args.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_to_conn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_to_conn.sql -------------------------------------------------------------------------------- /test/sql/resolve_connection_to_node.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_connection_to_node.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_connection_edge_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_connection_edge_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_connection_edge_node_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_connection_edge_node_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_connection_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_connection_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_from_parser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_from_parser.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_mutation_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_mutation_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_node_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_node_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_error_query_no_field.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_error_query_no_field.sql -------------------------------------------------------------------------------- /test/sql/resolve_fragment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_fragment.sql -------------------------------------------------------------------------------- /test/sql/resolve_graphiql_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_graphiql_schema.sql -------------------------------------------------------------------------------- /test/sql/resolve_one.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/resolve_one.sql -------------------------------------------------------------------------------- /test/sql/roundtrip_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/roundtrip_types.sql -------------------------------------------------------------------------------- /test/sql/row_level_security.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/row_level_security.sql -------------------------------------------------------------------------------- /test/sql/sqli_connection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/sqli_connection.sql -------------------------------------------------------------------------------- /test/sql/string_filters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/string_filters.sql -------------------------------------------------------------------------------- /test/sql/test_error_anon_and_named_operations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_anon_and_named_operations.sql -------------------------------------------------------------------------------- /test/sql/test_error_invalid_offset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_invalid_offset.sql -------------------------------------------------------------------------------- /test/sql/test_error_multiple_anon_operations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_multiple_anon_operations.sql -------------------------------------------------------------------------------- /test/sql/test_error_mutation_transpilation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_mutation_transpilation.sql -------------------------------------------------------------------------------- /test/sql/test_error_operation_name_not_found.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_operation_name_not_found.sql -------------------------------------------------------------------------------- /test/sql/test_error_operation_names_not_unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_operation_names_not_unique.sql -------------------------------------------------------------------------------- /test/sql/test_error_query_transpilation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_query_transpilation.sql -------------------------------------------------------------------------------- /test/sql/test_error_subscription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_error_subscription.sql -------------------------------------------------------------------------------- /test/sql/test_query__type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/test_query__type.sql -------------------------------------------------------------------------------- /test/sql/total_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/total_count.sql -------------------------------------------------------------------------------- /test/sql/type_bigfloat.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/type_bigfloat.sql -------------------------------------------------------------------------------- /test/sql/type_modifier_max_length.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/type_modifier_max_length.sql -------------------------------------------------------------------------------- /test/sql/type_opaque.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/type_opaque.sql -------------------------------------------------------------------------------- /test/sql/variable_default.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/variable_default.sql -------------------------------------------------------------------------------- /test/sql/views_integration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supabase/pg_graphql/HEAD/test/sql/views_integration.sql --------------------------------------------------------------------------------