diff --git a/spiceaidocs/docs/components/data-connectors/graphql.md b/spiceaidocs/docs/components/data-connectors/graphql.md index 213a578a0..bf0a21b34 100644 --- a/spiceaidocs/docs/components/data-connectors/graphql.md +++ b/spiceaidocs/docs/components/data-connectors/graphql.md @@ -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. ::: @@ -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) { @@ -113,6 +114,7 @@ The query must have the correct pagination arguments in the associated paginated ``` **Backward Pagination:** + ```graphql { something_paginated(last: 100) { diff --git a/spiceaidocs/docs/components/data-connectors/index.md b/spiceaidocs/docs/components/data-connectors/index.md index e4de5b1e6..bcb341311 100644 --- a/spiceaidocs/docs/components/data-connectors/index.md +++ b/spiceaidocs/docs/components/data-connectors/index.md @@ -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` | ❌ | ✅ |