├── .dockerignore ├── .envrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── internal-issues-only.md ├── pull_request_template.md └── workflows │ ├── breakage-checks.yml │ ├── build-test.yaml │ ├── check-format.yaml │ ├── nix.yaml │ └── release.yaml ├── .gitignore ├── .prettierignore ├── .vscode └── settings.json ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── flake.lock ├── flake.nix ├── justfile ├── ndc-models ├── Cargo.toml ├── README.md ├── src │ ├── aggregation.rs │ ├── capabilities.rs │ ├── expression.rs │ ├── fields.rs │ ├── lib.rs │ ├── names.rs │ ├── ordering.rs │ ├── relational_mutation │ │ └── mod.rs │ ├── relational_query │ │ ├── capabilities.rs │ │ ├── expression.rs │ │ ├── mod.rs │ │ └── types.rs │ ├── requests.rs │ └── schema.rs └── tests │ ├── json_schema │ ├── capabilities_response.jsonschema │ ├── error_response.jsonschema │ ├── explain_response.jsonschema │ ├── mutation_request.jsonschema │ ├── mutation_response.jsonschema │ ├── query_request.jsonschema │ ├── query_response.jsonschema │ ├── relational_delete_request.jsonschema │ ├── relational_delete_response.jsonschema │ ├── relational_insert_request.jsonschema │ ├── relational_insert_response.jsonschema │ ├── relational_query.jsonschema │ ├── relational_query_response.jsonschema │ ├── relational_update_request.jsonschema │ ├── relational_update_response.jsonschema │ └── schema_response.jsonschema │ └── tests.rs ├── ndc-reference ├── Cargo.toml ├── README.md ├── articles.jsonl ├── authors.jsonl ├── bin │ └── reference │ │ └── main.rs ├── countries.jsonl ├── institutions.jsonl └── tests │ ├── capabilities │ └── expected.snap │ ├── mutation │ ├── delete_articles │ │ ├── expected.snap │ │ └── request.json │ ├── upsert_article │ │ ├── expected.snap │ │ └── request.json │ └── upsert_article_with_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── query │ ├── aggregate_function │ │ ├── expected.snap │ │ └── request.json │ ├── aggregate_function_with_nested_field │ │ ├── expected.snap │ │ └── request.json │ ├── authors_with_article_aggregate │ │ ├── expected.snap │ │ └── request.json │ ├── authors_with_articles │ │ ├── expected.snap │ │ └── request.json │ ├── column_count │ │ ├── expected.snap │ │ └── request.json │ ├── get_all_articles │ │ ├── expected.snap │ │ └── request.json │ ├── get_max_article │ │ ├── expected.snap │ │ └── request.json │ ├── get_max_article_id │ │ ├── expected.snap │ │ └── request.json │ ├── group_by │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_extraction │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_having │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_nested_relationship_in_dimension │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_order_by │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_order_by_dimension │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_path_in_dimension │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_star_count │ │ ├── expected.snap │ │ └── request.json │ ├── group_by_with_where │ │ ├── expected.snap │ │ └── request.json │ ├── named_scopes │ │ ├── expected.snap │ │ └── request.json │ ├── nested_array_select │ │ ├── expected.snap │ │ └── request.json │ ├── nested_array_select_with_limit │ │ ├── expected.snap │ │ └── request.json │ ├── nested_collection_with_aggregates │ │ ├── expected.snap │ │ └── request.json │ ├── nested_collection_with_grouping │ │ ├── expected.snap │ │ └── request.json │ ├── nested_object_select │ │ ├── expected.snap │ │ └── request.json │ ├── nested_object_select_with_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_aggregate │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_aggregate_function │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_aggregate_nested_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_aggregate_with_predicate │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_column │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_nested_field │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_nested_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── order_by_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── pagination │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_array_contains │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_array_is_empty │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_column_aggregate │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_eq │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists_and_in │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists_and_relationship │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists_from_nested_field │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists_in_nested_collection │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_exists_in_nested_scalar_collection │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_in │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_like │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_nested_field_eq │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_star_count │ │ ├── expected.snap │ │ └── request.json │ ├── predicate_with_starts_with │ │ ├── expected.snap │ │ └── request.json │ ├── star_count │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_aggregate │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_exists │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_order_by │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_relationship_1 │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_relationship_2 │ │ ├── expected.snap │ │ └── request.json │ ├── table_argument_unrelated_exists │ │ ├── expected.snap │ │ └── request.json │ └── variables │ │ ├── expected.snap │ │ └── request.json │ └── schema │ └── expected.snap ├── ndc-test ├── Cargo.toml ├── README.md └── src │ ├── client │ └── mod.rs │ ├── configuration.rs │ ├── connector.rs │ ├── error.rs │ ├── lib.rs │ ├── main.rs │ ├── reporter.rs │ ├── snapshot.rs │ └── test_cases │ ├── capabilities.rs │ ├── mod.rs │ ├── query │ ├── aggregates │ │ └── mod.rs │ ├── common.rs │ ├── context.rs │ ├── grouping │ │ └── mod.rs │ ├── mod.rs │ ├── relationships │ │ └── mod.rs │ ├── simple_queries │ │ ├── mod.rs │ │ ├── predicates.rs │ │ └── sorting.rs │ └── validate │ │ └── mod.rs │ └── schema.rs ├── rfcs ├── 0001-versioning.md ├── 0002-boolean-expression-types.md ├── 0003-nested-field-selection.md ├── 0004-explain-mutations.md ├── 0005-scalar-type-representation.md ├── 0006-equality.md ├── 0007-additional-type-representations.md ├── 0008-remove-ndc-client.md ├── 0009-filter-and-order-by-nested-fields.md ├── 0010-field-arguments.md ├── 0011-no-paths-in-comparison-target.md ├── 0012-aggregate-nested-fields.md ├── 0013-filter-by-aggregates.md ├── 0014-group-by.md ├── 0015-named-scopes.md ├── 0016-newtypes.md ├── 0017-relationships-from-nested-fields.md ├── 0019-nested-collections.md ├── 0020-exists-in-nested-collection.md ├── 0021-comparison-and-aggregate-meanings.md ├── 0022-runtime-version-checks.md ├── 0023-filtering-over-nested-array-of-scalars.md ├── 0024-nested-relationships.md ├── 0025-additional-field-argument-support.md ├── 0026-string-operators.md ├── 0027-extraction-functions.md └── 0028-request-level-arguments.md ├── rust-toolchain.toml ├── scripts └── check-schema-breaking-changes.sh └── specification ├── .gitignore ├── Makefile ├── README.md ├── book.toml ├── src ├── SUMMARY.md ├── overview.md ├── reference │ ├── json-schema.md │ └── types.md ├── specification │ ├── README.md │ ├── basics.md │ ├── capabilities.md │ ├── changelog.md │ ├── error-handling.md │ ├── explain.md │ ├── health.md │ ├── metrics.md │ ├── mutations │ │ ├── README.md │ │ └── procedures.md │ ├── queries │ │ ├── README.md │ │ ├── aggregates.md │ │ ├── arguments.md │ │ ├── field-selection.md │ │ ├── filtering.md │ │ ├── functions.md │ │ ├── grouping.md │ │ ├── pagination.md │ │ ├── relationships.md │ │ ├── sorting.md │ │ └── variables.md │ ├── schema │ │ ├── README.md │ │ ├── arguments.md │ │ ├── capabilities.md │ │ ├── collections.md │ │ ├── functions.md │ │ ├── object-types.md │ │ ├── procedures.md │ │ └── scalar-types.md │ ├── telemetry.md │ ├── types.md │ └── versioning.md └── tutorial │ ├── README.md │ ├── capabilities.md │ ├── explain.md │ ├── getting-started.md │ ├── health.md │ ├── mutations │ ├── README.md │ ├── operations.md │ └── procedures.md │ ├── queries │ ├── README.md │ ├── arguments.md │ ├── execute │ │ ├── README.md │ │ ├── aggregates.md │ │ ├── field-selection.md │ │ ├── filtering.md │ │ ├── grouping.md │ │ ├── pagination.md │ │ ├── relationships.md │ │ └── sorting.md │ └── variables.md │ ├── schema.md │ ├── setup.md │ └── testing.md └── theme ├── css └── variables.css ├── pagetoc.css └── pagetoc.js /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | target 3 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.envrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/internal-issues-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/ISSUE_TEMPLATE/internal-issues-only.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/breakage-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/workflows/breakage-checks.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/workflows/build-test.yaml -------------------------------------------------------------------------------- /.github/workflows/check-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/workflows/check-format.yaml -------------------------------------------------------------------------------- /.github/workflows/nix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/workflows/nix.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/justfile -------------------------------------------------------------------------------- /ndc-models/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/Cargo.toml -------------------------------------------------------------------------------- /ndc-models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/README.md -------------------------------------------------------------------------------- /ndc-models/src/aggregation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/aggregation.rs -------------------------------------------------------------------------------- /ndc-models/src/capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/capabilities.rs -------------------------------------------------------------------------------- /ndc-models/src/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/expression.rs -------------------------------------------------------------------------------- /ndc-models/src/fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/fields.rs -------------------------------------------------------------------------------- /ndc-models/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/lib.rs -------------------------------------------------------------------------------- /ndc-models/src/names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/names.rs -------------------------------------------------------------------------------- /ndc-models/src/ordering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/ordering.rs -------------------------------------------------------------------------------- /ndc-models/src/relational_mutation/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/relational_mutation/mod.rs -------------------------------------------------------------------------------- /ndc-models/src/relational_query/capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/relational_query/capabilities.rs -------------------------------------------------------------------------------- /ndc-models/src/relational_query/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/relational_query/expression.rs -------------------------------------------------------------------------------- /ndc-models/src/relational_query/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/relational_query/mod.rs -------------------------------------------------------------------------------- /ndc-models/src/relational_query/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/relational_query/types.rs -------------------------------------------------------------------------------- /ndc-models/src/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/requests.rs -------------------------------------------------------------------------------- /ndc-models/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/src/schema.rs -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/capabilities_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/capabilities_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/error_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/error_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/explain_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/explain_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/mutation_request.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/mutation_request.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/mutation_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/mutation_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/query_request.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/query_request.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/query_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/query_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_delete_request.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_delete_request.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_delete_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_delete_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_insert_request.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_insert_request.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_insert_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_insert_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_query.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_query.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_query_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_query_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_update_request.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_update_request.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/relational_update_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/relational_update_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/json_schema/schema_response.jsonschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/json_schema/schema_response.jsonschema -------------------------------------------------------------------------------- /ndc-models/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-models/tests/tests.rs -------------------------------------------------------------------------------- /ndc-reference/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/Cargo.toml -------------------------------------------------------------------------------- /ndc-reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/README.md -------------------------------------------------------------------------------- /ndc-reference/articles.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/articles.jsonl -------------------------------------------------------------------------------- /ndc-reference/authors.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/authors.jsonl -------------------------------------------------------------------------------- /ndc-reference/bin/reference/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/bin/reference/main.rs -------------------------------------------------------------------------------- /ndc-reference/countries.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/countries.jsonl -------------------------------------------------------------------------------- /ndc-reference/institutions.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/institutions.jsonl -------------------------------------------------------------------------------- /ndc-reference/tests/capabilities/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/capabilities/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/delete_articles/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/delete_articles/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/delete_articles/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/delete_articles/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/upsert_article/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/upsert_article/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/upsert_article/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/upsert_article/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/upsert_article_with_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/upsert_article_with_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/mutation/upsert_article_with_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/mutation/upsert_article_with_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/aggregate_function/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/aggregate_function/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/aggregate_function/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/aggregate_function/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/aggregate_function_with_nested_field/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/aggregate_function_with_nested_field/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/aggregate_function_with_nested_field/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/aggregate_function_with_nested_field/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/authors_with_article_aggregate/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/authors_with_article_aggregate/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/authors_with_article_aggregate/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/authors_with_article_aggregate/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/authors_with_articles/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/authors_with_articles/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/authors_with_articles/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/authors_with_articles/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/column_count/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/column_count/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/column_count/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/column_count/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_all_articles/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_all_articles/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_all_articles/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_all_articles/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_max_article/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_max_article/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_max_article/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_max_article/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_max_article_id/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_max_article_id/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/get_max_article_id/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/get_max_article_id/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_extraction/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_extraction/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_extraction/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_extraction/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_having/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_having/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_having/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_having/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_nested_relationship_in_dimension/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_nested_relationship_in_dimension/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_nested_relationship_in_dimension/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_nested_relationship_in_dimension/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_order_by/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_order_by/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_order_by/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_order_by/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_order_by_dimension/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_order_by_dimension/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_order_by_dimension/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_order_by_dimension/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_path_in_dimension/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_path_in_dimension/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_path_in_dimension/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_path_in_dimension/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_star_count/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_star_count/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_star_count/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_star_count/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_where/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_where/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/group_by_with_where/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/group_by_with_where/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/named_scopes/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/named_scopes/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/named_scopes/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/named_scopes/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_array_select/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_array_select/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_array_select/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_array_select/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_array_select_with_limit/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_array_select_with_limit/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_array_select_with_limit/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_array_select_with_limit/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_collection_with_aggregates/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_collection_with_aggregates/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_collection_with_aggregates/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_collection_with_aggregates/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_collection_with_grouping/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_collection_with_grouping/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_collection_with_grouping/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_collection_with_grouping/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_object_select/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_object_select/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_object_select/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_object_select/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_object_select_with_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_object_select_with_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/nested_object_select_with_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/nested_object_select_with_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_function/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_function/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_function/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_function/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_nested_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_nested_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_nested_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_nested_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_with_predicate/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_with_predicate/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_aggregate_with_predicate/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_aggregate_with_predicate/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_column/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_column/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_column/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_column/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_nested_field/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_nested_field/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_nested_field/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_nested_field/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_nested_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_nested_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_nested_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_nested_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/order_by_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/order_by_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/pagination/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/pagination/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/pagination/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/pagination/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_array_contains/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_array_contains/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_array_contains/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_array_contains/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_array_is_empty/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_array_is_empty/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_array_is_empty/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_array_is_empty/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_column_aggregate/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_column_aggregate/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_column_aggregate/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_column_aggregate/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_eq/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_eq/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_eq/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_eq/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_and_in/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_and_in/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_and_in/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_and_in/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_and_relationship/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_and_relationship/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_and_relationship/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_and_relationship/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_from_nested_field/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_from_nested_field/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_from_nested_field/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_from_nested_field/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_in_nested_collection/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_in_nested_collection/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_in_nested_collection/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_in_nested_collection/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_in_nested_scalar_collection/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_in_nested_scalar_collection/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_exists_in_nested_scalar_collection/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_exists_in_nested_scalar_collection/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_in/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_in/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_in/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_in/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_like/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_like/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_like/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_like/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_nested_field_eq/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_nested_field_eq/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_nested_field_eq/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_nested_field_eq/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_star_count/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_star_count/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_star_count/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_star_count/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_starts_with/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_starts_with/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/predicate_with_starts_with/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/predicate_with_starts_with/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/star_count/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/star_count/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/star_count/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/star_count/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_aggregate/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_aggregate/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_aggregate/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_aggregate/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_exists/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_exists/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_exists/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_exists/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_order_by/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_order_by/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_order_by/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_order_by/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_relationship_1/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_relationship_1/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_relationship_1/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_relationship_1/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_relationship_2/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_relationship_2/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_relationship_2/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_relationship_2/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_unrelated_exists/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_unrelated_exists/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/table_argument_unrelated_exists/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/table_argument_unrelated_exists/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/query/variables/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/variables/expected.snap -------------------------------------------------------------------------------- /ndc-reference/tests/query/variables/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/query/variables/request.json -------------------------------------------------------------------------------- /ndc-reference/tests/schema/expected.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-reference/tests/schema/expected.snap -------------------------------------------------------------------------------- /ndc-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/Cargo.toml -------------------------------------------------------------------------------- /ndc-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/README.md -------------------------------------------------------------------------------- /ndc-test/src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/client/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/configuration.rs -------------------------------------------------------------------------------- /ndc-test/src/connector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/connector.rs -------------------------------------------------------------------------------- /ndc-test/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/error.rs -------------------------------------------------------------------------------- /ndc-test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/lib.rs -------------------------------------------------------------------------------- /ndc-test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/main.rs -------------------------------------------------------------------------------- /ndc-test/src/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/reporter.rs -------------------------------------------------------------------------------- /ndc-test/src/snapshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/snapshot.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/capabilities.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/aggregates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/aggregates/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/common.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/context.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/grouping/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/grouping/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/relationships/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/relationships/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/simple_queries/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/simple_queries/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/simple_queries/predicates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/simple_queries/predicates.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/simple_queries/sorting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/simple_queries/sorting.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/query/validate/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/query/validate/mod.rs -------------------------------------------------------------------------------- /ndc-test/src/test_cases/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/ndc-test/src/test_cases/schema.rs -------------------------------------------------------------------------------- /rfcs/0001-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0001-versioning.md -------------------------------------------------------------------------------- /rfcs/0002-boolean-expression-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0002-boolean-expression-types.md -------------------------------------------------------------------------------- /rfcs/0003-nested-field-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0003-nested-field-selection.md -------------------------------------------------------------------------------- /rfcs/0004-explain-mutations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0004-explain-mutations.md -------------------------------------------------------------------------------- /rfcs/0005-scalar-type-representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0005-scalar-type-representation.md -------------------------------------------------------------------------------- /rfcs/0006-equality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0006-equality.md -------------------------------------------------------------------------------- /rfcs/0007-additional-type-representations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0007-additional-type-representations.md -------------------------------------------------------------------------------- /rfcs/0008-remove-ndc-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0008-remove-ndc-client.md -------------------------------------------------------------------------------- /rfcs/0009-filter-and-order-by-nested-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0009-filter-and-order-by-nested-fields.md -------------------------------------------------------------------------------- /rfcs/0010-field-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0010-field-arguments.md -------------------------------------------------------------------------------- /rfcs/0011-no-paths-in-comparison-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0011-no-paths-in-comparison-target.md -------------------------------------------------------------------------------- /rfcs/0012-aggregate-nested-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0012-aggregate-nested-fields.md -------------------------------------------------------------------------------- /rfcs/0013-filter-by-aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0013-filter-by-aggregates.md -------------------------------------------------------------------------------- /rfcs/0014-group-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0014-group-by.md -------------------------------------------------------------------------------- /rfcs/0015-named-scopes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0015-named-scopes.md -------------------------------------------------------------------------------- /rfcs/0016-newtypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0016-newtypes.md -------------------------------------------------------------------------------- /rfcs/0017-relationships-from-nested-fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0017-relationships-from-nested-fields.md -------------------------------------------------------------------------------- /rfcs/0019-nested-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0019-nested-collections.md -------------------------------------------------------------------------------- /rfcs/0020-exists-in-nested-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0020-exists-in-nested-collection.md -------------------------------------------------------------------------------- /rfcs/0021-comparison-and-aggregate-meanings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0021-comparison-and-aggregate-meanings.md -------------------------------------------------------------------------------- /rfcs/0022-runtime-version-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0022-runtime-version-checks.md -------------------------------------------------------------------------------- /rfcs/0023-filtering-over-nested-array-of-scalars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0023-filtering-over-nested-array-of-scalars.md -------------------------------------------------------------------------------- /rfcs/0024-nested-relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0024-nested-relationships.md -------------------------------------------------------------------------------- /rfcs/0025-additional-field-argument-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0025-additional-field-argument-support.md -------------------------------------------------------------------------------- /rfcs/0026-string-operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0026-string-operators.md -------------------------------------------------------------------------------- /rfcs/0027-extraction-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0027-extraction-functions.md -------------------------------------------------------------------------------- /rfcs/0028-request-level-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rfcs/0028-request-level-arguments.md -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /scripts/check-schema-breaking-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/scripts/check-schema-breaking-changes.sh -------------------------------------------------------------------------------- /specification/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /specification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/Makefile -------------------------------------------------------------------------------- /specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/README.md -------------------------------------------------------------------------------- /specification/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/book.toml -------------------------------------------------------------------------------- /specification/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/SUMMARY.md -------------------------------------------------------------------------------- /specification/src/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/overview.md -------------------------------------------------------------------------------- /specification/src/reference/json-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/reference/json-schema.md -------------------------------------------------------------------------------- /specification/src/reference/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/reference/types.md -------------------------------------------------------------------------------- /specification/src/specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/README.md -------------------------------------------------------------------------------- /specification/src/specification/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/basics.md -------------------------------------------------------------------------------- /specification/src/specification/capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/capabilities.md -------------------------------------------------------------------------------- /specification/src/specification/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/changelog.md -------------------------------------------------------------------------------- /specification/src/specification/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/error-handling.md -------------------------------------------------------------------------------- /specification/src/specification/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/explain.md -------------------------------------------------------------------------------- /specification/src/specification/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/health.md -------------------------------------------------------------------------------- /specification/src/specification/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/metrics.md -------------------------------------------------------------------------------- /specification/src/specification/mutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/mutations/README.md -------------------------------------------------------------------------------- /specification/src/specification/mutations/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/mutations/procedures.md -------------------------------------------------------------------------------- /specification/src/specification/queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/README.md -------------------------------------------------------------------------------- /specification/src/specification/queries/aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/aggregates.md -------------------------------------------------------------------------------- /specification/src/specification/queries/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/arguments.md -------------------------------------------------------------------------------- /specification/src/specification/queries/field-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/field-selection.md -------------------------------------------------------------------------------- /specification/src/specification/queries/filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/filtering.md -------------------------------------------------------------------------------- /specification/src/specification/queries/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/functions.md -------------------------------------------------------------------------------- /specification/src/specification/queries/grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/grouping.md -------------------------------------------------------------------------------- /specification/src/specification/queries/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/pagination.md -------------------------------------------------------------------------------- /specification/src/specification/queries/relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/relationships.md -------------------------------------------------------------------------------- /specification/src/specification/queries/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/sorting.md -------------------------------------------------------------------------------- /specification/src/specification/queries/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/queries/variables.md -------------------------------------------------------------------------------- /specification/src/specification/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/README.md -------------------------------------------------------------------------------- /specification/src/specification/schema/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/arguments.md -------------------------------------------------------------------------------- /specification/src/specification/schema/capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/capabilities.md -------------------------------------------------------------------------------- /specification/src/specification/schema/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/collections.md -------------------------------------------------------------------------------- /specification/src/specification/schema/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/functions.md -------------------------------------------------------------------------------- /specification/src/specification/schema/object-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/object-types.md -------------------------------------------------------------------------------- /specification/src/specification/schema/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/procedures.md -------------------------------------------------------------------------------- /specification/src/specification/schema/scalar-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/schema/scalar-types.md -------------------------------------------------------------------------------- /specification/src/specification/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/telemetry.md -------------------------------------------------------------------------------- /specification/src/specification/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/types.md -------------------------------------------------------------------------------- /specification/src/specification/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/specification/versioning.md -------------------------------------------------------------------------------- /specification/src/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/README.md -------------------------------------------------------------------------------- /specification/src/tutorial/capabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/capabilities.md -------------------------------------------------------------------------------- /specification/src/tutorial/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/explain.md -------------------------------------------------------------------------------- /specification/src/tutorial/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/getting-started.md -------------------------------------------------------------------------------- /specification/src/tutorial/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/health.md -------------------------------------------------------------------------------- /specification/src/tutorial/mutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/mutations/README.md -------------------------------------------------------------------------------- /specification/src/tutorial/mutations/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/mutations/operations.md -------------------------------------------------------------------------------- /specification/src/tutorial/mutations/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/mutations/procedures.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/README.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/arguments.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/README.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/aggregates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/aggregates.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/field-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/field-selection.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/filtering.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/grouping.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/pagination.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/relationships.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/execute/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/execute/sorting.md -------------------------------------------------------------------------------- /specification/src/tutorial/queries/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/queries/variables.md -------------------------------------------------------------------------------- /specification/src/tutorial/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/schema.md -------------------------------------------------------------------------------- /specification/src/tutorial/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/setup.md -------------------------------------------------------------------------------- /specification/src/tutorial/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/src/tutorial/testing.md -------------------------------------------------------------------------------- /specification/theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/theme/css/variables.css -------------------------------------------------------------------------------- /specification/theme/pagetoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/theme/pagetoc.css -------------------------------------------------------------------------------- /specification/theme/pagetoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/ndc-spec/HEAD/specification/theme/pagetoc.js --------------------------------------------------------------------------------