Skip to content

Commit

Permalink
docs: Release GraphQL release candidate (#663)
Browse files Browse the repository at this point in the history
Co-authored-by: Jack Eadie <[email protected]>
  • Loading branch information
peasee and Jeadie authored Dec 15, 2024
1 parent b599e28 commit 3f8ecc7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions spiceaidocs/docs/components/data-connectors/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ datasets:
:::warning[Limitations]
- The GraphQL data connector does not support variables in the query.
- Filter pushdown is not currently supported; however, when using the limit, the connector will request only the necessary data.
- Filter pushdown, with the exclusion of `LIMIT`, is not currently supported. Using a `LIMIT` will reduce the amount of data requested from the GraphQL server.

:::

Expand Down Expand Up @@ -94,9 +94,10 @@ The `graphql_query` must include the `pageInfo` field as per [spec](https://rela

The query must have the correct pagination arguments in the associated paginated field.


### Example

**Forward Pagination:**

```graphql
{
something_paginated(first: 100) {
Expand All @@ -113,6 +114,7 @@ The query must have the correct pagination arguments in the associated paginated
```

**Backward Pagination:**

```graphql
{
something_paginated(last: 100) {
Expand Down
2 changes: 1 addition & 1 deletion spiceaidocs/docs/components/data-connectors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Currently supported Data Connectors include:
| `dremio` | Dremio | Alpha | Arrow Flight SQL | `append`, `full` |||
| `file` | File | Alpha | Parquet, CSV | `append`, `full` | Roadmap ||
| `ftp`, `sftp` | FTP/SFTP | Alpha | Parquet, CSV | `append`, `full` |||
| `graphql` | GraphQL | Alpha | GraphQL | `append`, `full` |||
| `graphql` | GraphQL | Release Candidate | GraphQL | `append`, `full` |||
| `http`, `https` | HTTP(s) | Alpha | Parquet, CSV | `append`, `full` |||
| `localpod` | Local dataset replication | Alpha | | `append`, `full` |||
| `sharepoint` | SharePoint | Alpha | | `append`, `full` |||
Expand Down

0 comments on commit 3f8ecc7

Please sign in to comment.