* convex source * fixed unit tests * use the smaller test instance * fix integration tests and pagination * fix tableName casing in api call * fix logo * more shapes -- thinking about moving this to an internal api * use new /json_schemas api * use new APIs * remove unused start_date * doc skeleton * fix deletes with incremental sync * fix test of json_schema * fix expected records * merge * version and docs * fix test * fix docs url * mention that you need to ask convex to enable it for your account * docs * two stage pagination for initial sync. some unit tests not working * fixed all the unit tests, but we need to push backends before acceptance tests work * fix snapshot pagination * fix integration tests * some checkboxes from the PR description * Update airbyte-integrations/connectors/source-convex/source_convex/source.py Co-authored-by: Sujay Jayakar <sujayakar314+github@gmail.com> * Update airbyte-integrations/connectors/source-convex/source_convex/source.py Co-authored-by: Sujay Jayakar <sujayakar314+github@gmail.com> * stop storing the delta_has_more in state * fix mypy * use UTC timestamps * rename instance_name to deployment_name * include data format request param * remove dev docker image * fix unit test * documentation * . * code review * documentation and change deployment_name to deployment_url * fix pip dependency * regenerate the spec file Co-authored-by: Sujay Jayakar <sujayakar314+github@gmail.com>
19 lines
726 B
Markdown
19 lines
726 B
Markdown
# Convex
|
|
|
|
## Overview
|
|
|
|
Convex is the reactive backend-as-a-service for web developers.
|
|
As part of the backend, Convex stores developer-defined documents in tables.
|
|
Convex's HTTP API allows a developer to retrieve documents from their Convex tables.
|
|
|
|
## Endpoints
|
|
|
|
Convex defines three endpoints used for extracting data:
|
|
|
|
1. `/json_schema` identifies the data format for each table.
|
|
2. `/list_snapshot` returns pages of a table's data at a snapshot timestamp, for initial sync.
|
|
3. `/document_deltas` returns pages of modifications to a table's data after a given timestamp.
|
|
|
|
For more details, see the documentation for Convex Sync endpoints at
|
|
[https://docs.convex.dev/http-api/#sync](https://docs.convex.dev/http-api/#sync).
|