Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds feature tables to each of the connectors on the hub #353

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion registry/hasura/azure-cosmos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Below, you'll find a matrix of all supported features for the Azure Cosmos DB fo
| Paginate | ✅ | |
| Nested Objects | ✅ | |
| Nested Arrays | ✅ | |
| Nested Filtering | | |
| Nested Filtering | | |
| Nested Sorting | ❌ | |
| Nested Relationships | ❌ | |

Expand Down
24 changes: 12 additions & 12 deletions registry/hasura/duckdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ Below, you'll find a matrix of all supported features for the DuckDB connector:

| Feature | Supported | Notes |
| ------------------------------- | --------- | ----- |
| Native Queries + Logical Models | ❌ | |
| Simple Object Query | ✅ | |
| Filter / Search | ✅ | |
| Simple Aggregation | ❌ | |
| Sort | ✅ | |
| Paginate | ✅ | |
| Table Relationships | ✅ | |
| Views | ❌ | |
| Distinct | ❌ | |
| Remote Relationships | ✅ | |
| Custom Fields | ❌ | |
| Mutations | ❌ | |
| Native Queries + Logical Models | ❌ | |
| Simple Object Query | ✅ | |
| Filter / Search | ✅ | |
| Simple Aggregation | ❌ | |
| Sort | ✅ | |
| Paginate | ✅ | |
| Table Relationships | ✅ | |
| Views | ❌ | |
| Distinct | ❌ | |
| Remote Relationships | ✅ | |
| Custom Fields | ❌ | |
| Mutations | ❌ | |

## Prerequisites

Expand Down
15 changes: 15 additions & 0 deletions registry/hasura/graphql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ For Hasura v2 users, this functionality is the replacement of
The `ndc-graphql` data connector is open source and can be found in the
[ndc-graphql GitHub repository](https://github.com/hasura/ndc-graphql).

## Features

Below, you'll find a matrix of all supported features for the GraphQL connector:

| Feature | Supported | Notes |
| ---------------------- | --------- | ----- |
| Queries | ✅ | All features that v3 engine currently supports
| Mutations | ✅ |
| Header Passthrough | ✅ | Entire headers can be forwarded
| Subscriptions | ❌ |
| Unions | ❌ | Can be brought in via scalar types
| Interfaces | ❌ |
| Relay API | ❌ |
| Directives | ❌ | @cached, Apollo directives

## Prerequisites

1. Create a [Hasura Cloud account](https://console.hasura.io)
Expand Down
22 changes: 22 additions & 0 deletions registry/hasura/mongodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@ which can expose and run GraphQL queries via the Hasura v3 Project.
The connector implements the [NDC Specification](https://hasura.github.io/ndc-spec/overview.html),
but does not currently support mutations, column relationship arguments in queries, functions or procedures.

## Features

Below, you'll find a matrix of all supported features for the MongoDB data connector:

| Feature | Supported | Notes |
| ----------------------------------------------- | --------- | ----- |
| Native Queries + Logical Models | ✅ | |
| Simple Object Query | ✅ | |
| Filter / Search | ✅ | |
| Filter by fields of Nested Objects | ✅ | |
| Filter by values in Nested Arrays | ✅ | |
| Simple Aggregation | ✅ | |
| Aggregate fields of Nested Objects | ❌ | |
| Aggregate values of Nested Arrays | ❌ | |
| Sort | ✅ | |
| Sorty by fields of Nested Objects | ❌ | |
| Paginate | ✅ | |
| Collection Relationships | ✅ | |
| Remote Relationships | ✅ | |
| Relationships Keyed by Fields of Nested Objects | ❌ | |
| Mutations | ✅ | Provided by custom [Native Mutations](TODO) - predefined basic mutations are also planned |

## Prerequisites

1. Create a [Hasura Cloud account](https://console.hasura.io)
Expand Down
21 changes: 21 additions & 0 deletions registry/hasura/postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ for more information about specific features that are available for the PostgreS

The connector is hosted by Hasura and can be used from the [Hasura v3 Console](https://console.hasura.io).

## Features

Below, you'll find a matrix of all supported features for the PostgreSQL connector:

| Feature | Supported |
| ---------------------- | --------- |
| Native Queries | ✅ |
| Native Mutations | ✅ |
| Simple Object Query | ✅ |
| Filter / Search | ✅ |
| Simple Aggregation | ✅ |
| Sort | ✅ |
| Paginate | ✅ |
| Table Relationships | ✅ |
| Views | ✅ |
| Mutations | ✅ |
| Distinct | ✅ |
| Enums | ✅ |
| Default Values | ✅ |
| User-defined Functions | ❌ |

## Usage

The Hasura PostgreSQL connector can be deployed using the [Hasura CLI](https://hasura.io/docs/3.0/cli/overview) by following either the [Quick Start Guide](https://hasura.io/docs/3.0/getting-started/overview/) or [deploying the connector](https://hasura.io/docs/3.0/connectors/deployment).
Expand Down
Loading