Interface: QueryInitializer<TableInfo>
server.QueryInitializer
The QueryInitializer interface is the entry point for building a Query over a Convex database table.
There are two types of queries:
- Full table scans: Queries created with fullTableScan which iterate over all of the documents in the table in insertion order.
- Indexed Queries: Queries created with withIndex which iterate over an index range in index order.
For convenience, QueryInitializer extends the Query interface, implicitly starting a full table scan.
Type parameters
| Name | Type |
|---|---|
TableInfo | extends GenericTableInfo |
Hierarchy
-
Query<TableInfo>