Read extractor output rows
Read-only retrieval of rows produced by a specific
ExtractorVersion, joining the warehouse table with
HydrationComputation records.
What it returns: rows from {table_id} whose computation_hash
belongs to a HydrationComputation with the given
extractor_version_id (and matching lineage, when provided). By
default only rows still considered “live” (deleted IS NULL on the
physical table and the hydration computation not soft-deleted) are
returned.
Write operations are not supported by this endpoint.
Filtering:
Keys are column names with
optional Django-style lookups (__in, __gte, __lte, __isnull).
The frontend-only key processing_options, if present, is ignored
server-side.
Lineage:
Optional list of {node_id, computation_hash} entries that narrows
results to a specific upstream computation path in the extraction-flow
DAG. Omit to retrieve all rows produced by the extractor version.
Permissions: CAN_VIEW_DATA on the project.
Authorizations
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the table
Body
UUID of the ExtractorVersion whose output rows should be
returned. Rows are joined with HydrationComputation records on
their computation_hash.
Column-level filters. Keys are column names with optional
Django-style lookups (e.g. document_id, min_page__gte,
max_page__lte, deleted__isnull). The reserved key
processing_options (used by the frontend for display only) is
stripped server-side.
Column names to return in each row. Omit (or send []) to return
every column of the underlying physical table.
Optional list of {node_id, computation_hash} entries restricting
the result set to a specific upstream computation path. Send null
or omit to retrieve all rows for the extractor version.
When true, also return rows whose HydrationComputation has
been soft-deleted (deleted_at IS NOT NULL) and rows where the
table's deleted flag is set. Defaults to false.
Maximum number of rows to return.
Number of rows to skip for pagination.
Response
Rows retrieved successfully
Wrapper around the paginated list of rows produced by the requested
ExtractorVersion.