Stream of decoded documents with an order key and direction. Use reader.table(...).stream(...) for standard indexes; search indexes use search.
A first query
After setting up Confect, define afeed paginated query spec with the notes document as its item schema. Its handler receives paginationOpts automatically. This handler merges notes from two roles, removes hidden notes, and returns a page:
confect/notes.impl.ts
reader.table("notes").stream(...) is different from
reader.table("notes").index(...).stream() on the
Reading page. The latter is a plain
Stream over one query; the former is a composable query stream.Operations at a glance
The last column compares each operation with EffectβsStream operations.
The ordering contract
Every query stream visits its order keys in its direction. Keys are stored separately from emitted values, so mapping a document doesnβt change its position. Compatible streams can be merged in key order, and pagination resumes after a saved key rather than an offset. TheKey and Direction type parameters enforce this contract: merge refuses streams whose known keys or directions differ at compile time. Directions chosen at runtime are also checked at runtime.
flatMap appends the inner key to the outer key; renameKey relabels fields without reordering values. reverse changes the direction, not the key.
Example data and diagram notation
The examples use these two tables.n1 and c1 are readable stand-ins for real Convex document IDs:
notes has the indexes by_text on ["text"] and by_role on ["author.role"]; comments has by_note on ["noteId"] and by_body on ["body"]. Runtime order keys include _creationTime and _id tiebreakers, so by_text orders by text, creation time, then ID.
Reading the diagrams
A stream is drawn as a track, read left to right in key orderβthe way a marble diagram reads left to right in time, with the indexβs ordering as the axis: Diagram keys are abbreviated:[apple,1] means ["apple", 1, "n1"], with _id omitted for space. Joined keys omit both outer and inner IDs: [1,7] means [1, "n1", 7, "c1"]. Cursor labels such as cursor: [apple,3] stand for schematic strings, not arrays accepted by the API. See Cursor format and validation for the actual wire format.
- The streamβs name is printed above its track, and
β°joins the two. β n1 βis an element: the documentn1. Its key, the values the stream is ordered by, is printed beneath it.β (n6) βis an element that was read but filtered out. It emits nothing, but it still counts toward read budgets, and cursors still advance past it.- A blank stretch of track is key space the stream never read (skipped by a seek).
β€is the end of the stream,βa cursor: a position between two keys.ββ β¦ ββ‘is the operation between the input track (above) and its output (below). Tracks in one diagram share columns, so elements that line up vertically hold the same position in the outputβs order.
Creating a stream
stream takes an index name, an optional range callback, and an optional order ("asc" by default). It returns a QueryStream whose elements are decoded documents, in index order.
Creating or composing a stream does not read documents. Reads begin when you run a consuming effect, such as Stream.runCollect or QueryStream.paginate; each run executes the queries again.
Every note, sorted by text
Every note, sorted by text, descending
Notes whose text is at least "banana", sorted by text
Notes whose text is exactly "apple", sorted by creation time
eq removes it:
Range callbacks
The range callback mirrors Convexβs index range builder with one addition: it tracks which fields are still varying after the range is applied.eqpins the next index field to a value and consumes itβit no longer varies within the stream.gt,gte,lt, andltebound the next field without consuming it, and must come last (a lower bound may be followed by an upper bound on the same field).
Order keys
The type-levelKey tracks varying index fields, including _creationTime, but omits implicit _id fields. reader.table("notes").stream("by_text") has the type-level key ["text", "_creationTime"]; its runtime keyFields are ["text", "_creationTime", "_id"], with values such as ["apple", 1, "n1"]. Pinning text with eq removes it from both layouts.
Use the type-level key for empty, distinct, renameKey, and flatMapβs innerKey. Use runtime keys for exact narrow boundaries and cursor serialization. Preserve every _id in a boundary: it distinguishes documents with otherwise equal keys. A flat-map keeps an ID for each level of the join, not just the final document.
Empty streams
QueryStream.empty is a query stream with no documents but a known order key, for the places where a stream is required and there is nothing to put in it. Its usual job is a merge over a list of streams that may turn out empty, since merge needs at least one input.
_creationTime included, implicit _id omitted). The generated document types name the document:
Consuming a stream
A query stream is a genuineStream, so everything in Effectβs Stream module applies (QueryStream.isQueryStream tells the two apart at runtime):
Stream.runCollect returns an effect that collects all results; Stream.runHead returns an effect producing the first result as an Option. Stream.take(n) is a transform, not a consumer: it returns a plain stream of at most n results, which you can then collect.
Stream combinator the result is an ordinary Stream: it can be consumed, but it no longer knows its order key, so it canβt be merged or paginated further. Use the QueryStream combinators below when you need to keep that ability.
QueryStream.unique consumes a stream expected to hold at most one document, returning an Option and failing with NotUniqueError if there are two or more:
Composing streams
Keep callbacks deterministic and read-only: pagination, seeks, and reversal can reevaluate them for the same document. Effects should be safe to run again, not perform writes or other one-time side effects.Merge
QueryStream.merge interleaves streams that share an order key into one ordered stream. Merging is how you query over several index ranges at once, such as the notes by two roles in the example at the top of this page.
It is an ordered merge, the step of merge sort that combines sorted runs, always emitting the smallest next key (the largest, descending). It is not Stream.merge, which interleaves inputs in arrival order.
author.role leaves both streams with the order key ["_creationTime"], so the merge interleaves them by creation time:
Filter and map
QueryStream.filter removes emitted values; QueryStream.map transforms them. Both preserve the original stored order keys. A rejected document still counts as read, so cursors can advance past it.
note.text to its length still orders by the original text, creation time, and IDβnot by length.
When the predicate or mapper needs to run an effectβread another table, use a service, or fail with a typed errorβuse QueryStream.filterEffect and QueryStream.mapEffect instead. They behave the same way, and the effectβs error and requirement types flow into the streamβs:
{ concurrency } to run several at once; elements are still emitted in stream order, so the result is the same query stream, just faster when each effect is a database read:
Distinct
QueryStream.distinct keeps the first document for each distinct value of a prefix of the order key.
After a groupβs first document, distinct seeks past the group with a fresh index read instead of scanning the rest of it.
n1 is found, the stream seeks straight to the first key past apple; n3 is never read. The same happens after n2 for banana:
flatMap result, a prefix that reaches into the inner key groups by the outer document as well, since groups are runs of consecutive equal keys.
Operation order determines which document represents each group. Apply filter (or filterEffect) before distinct to choose the first matching document; apply it after distinct to test the chosen representative, omitting the group if that document fails. Reversing a distinct stream keeps its representatives and reverses their output order. Reversing the input before applying distinct instead chooses the first document from the other direction.
Narrow to a key range
QueryStream.narrow restricts a stream to the order keys between start and end. Each endpoint has a key and a required inclusive flag, so you can choose any combination of inclusive and exclusive bounds. Provide at least one endpoint; omit the other to leave that side unbounded.
Endpoints follow stream order: on an ascending stream, start is the lower key; on a descending stream, it is the upper key. Narrowing intersects existing bounds, so repeated calls can only restrict the range further.
distinct, may still read outside the output bounds to find the correct representative.
For this direct index stream, the bounds become index-range predicates, so the elements outside them are not read at all:
_id:
startTime and excludes every note at endTime. Adjacent windows can share an endpoint without overlapping. Apply the same bounds to a merged stream when its leading order-key field is also creation time.
When both endpoints use the same key, the range is empty unless both are inclusive. Two inclusive endpoints select that key, or the entire group for a prefix key.
On a distinct stream, full-key bounds filter the original representatives exactly; they do not select a replacement from within the narrowed range. Explicit prefix bounds still include or exclude whole groups. Bounds applied before distinct constrain its input and can change which document represents a group; bounds applied after it constrain only the output, preserving that original input range and its representatives.
paginate uses an exclusive start and an inclusive end. For a nonterminal page, decode its continueCursor with the streamβs cursor schema and pass that full runtime key as an exclusive start to narrow. Do not decode QueryStreamCursor.END_CURSOR as a boundary; it is an end-of-stream sentinel.
Flat-map
QueryStream.flatMap runs an inner stream for each document of an outer stream and concatenates the results, ordered by the outer key and then the inner key.
An outer document whose inner stream is empty contributes no elements. Use onEmpty to emit a placeholder for it.
n5 has no comments, so it contributes only a filtered marker that keeps cursors moving:
innerKey; it is checked against the type of the stream the function returns. Inner streams must run in the outer streamβs direction: with QueryStream.flatMap(outer, f, options) the outer stream fixes it and a differing inner stream is a type error, while with outer.pipe(QueryStream.flatMap(f, options)) the inner streams fix it. A mismatch the types canβt see fails when the join runs.
Here the type-level key is ["_creationTime", "_creationTime"], but the runtime layout is ["_creationTime", "_id", "_creationTime", "_id"]: the outer noteβs complete key, then the commentβs. For c1, that is [1, "n1", 7, "c1"]. Keep both IDs when serializing or narrowing a joined stream; equal outer timestamps must not collapse distinct notes into one group.
Keep outer documents without inner documents
By default an outer document whose inner stream is empty contributes nothing. PassonEmpty to flatMap to keep it: the document is emitted as onEmpty(outer), and the element type widens to include that placeholder.
β
n5, that is onEmpty(n5)) takes the position the filtered marker had without onEmpty, so it sorts first within its outer document and pagination steps past it like any element:
innerKey check and the direction rules, is unchanged.
Rename the order key
QueryStream.renameKey relabels a streamβs order key positionally. It does not sort: the elements and their order are untouched.
Use it to merge streams from different indexes or tables that sort by the same kind of value under different field names. Since merged streams must also share a document type, map each side to a common shape first:
flatMap result relabels by its combined key, outer fields first.
Reverse
QueryStream.reverse runs a composed stream in the opposite direction. Its typical use is bidirectional pagination: the stream that loads a feedβs later pages, reversed, loads its earlier ones.
It uses index scans and seeks rather than collecting and reversing the results, and the result is still a query stream.
distinct, renameKey, and empty all reverse. reverse(distinct(q)) keeps the same first representative of each group and flips only their output order. distinct(reverse(q)) instead chooses each groupβs representative from the other direction. Preserving representatives can require extra index reads to discover groups and seek their original first documents.
Paginating a stream
QueryStream.paginate returns an effect producing one page of a composed stream. Pass the handlerβs paginationOpts as in the first example; the options follow Convexβs pagination protocol with the semantics of convex-helpersβ stream pagination.
Options
Result
For a one-shot read inside a handler, consume the resultβs
page. For sequential reads, preserve the returned cursor rather than reconstructing it from the last visible document:
page.
Page boundaries
Three pages of two over the filtered notes follow each prior cursor. In this direct filtered scan, earlier documents arenβt reread; the hidden note is read on the last page, counted, and not returned:endCursor, a page covers exactly the range between its two cursors, however many documents that range holds as data changes, which is how reactive clients keep adjacent pages gap-free:
Read budgets
Cursor bounds are pushed into underlying index queries where possible, but compositions may read more documents than they return, including documents read by an earlier page. Both budgets count filtered documents, distinct-group discovery, repeated seeks, merge prefetch, and outer and innerQueryStream reads in joins. They do not track arbitrary I/O inside callbacks, such as a separate database lookup in mapEffect.
A budget-limited page stops at a safe logical key so resuming cannot skip an unfinished group or join. If the budget prevents safe progress or a strictly interior split of a pinned page, paginate fails with the typed QueryStreamReadBudget.ReadBudgetExceededError instead of returning a non-advancing cursor or repeating the same split. Increase the budget or change the query to reduce the reads needed for progress. Byte accounting happens after each document is read, so the last document can take the total over maximumBytesRead.
Cursor format and validation
Boundary cursors are JSON strings containing a versioned envelope:{ version: 1, keyFields: [...], orderKey: [...] }. keyFields contains the full runtime field layout in order, including implicit IDs; orderKey contains the corresponding encoded values. For the example note n3, the serialized cursor string contains this JSON object (using the exampleβs stand-in ID):
QueryStreamCursor module, exported from @confect/server, models cursors with native Convex values: decoded keys can contain bigint, ArrayBuffer, or undefined. Its schemas handle the full JSON round trip through Effectβs standard encoding and decoding APIs.
For example, resume manually from a nonterminal page inside an effect:
Schema.encodeEffect(Cursor)(key). Both directions report schema failures through Effectβs error channel.
paginate validates boundary cursors against the streamβs runtime layout. Malformed envelopes, unsupported versions, and mismatched ordered field names fail with a ConvexError whose data is { paginationError: "InvalidCursor" }. Confectβs pagination clients treat that signal as a request to restart. The string "[]" is accepted only as an endCursor sentinel.
The envelope does not identify the query, index, filters, pinned eq values, or direction. A change to any of those that preserves the runtime field layout is not automatically detected. Restart pagination when changing query semantics; do not rely on cursor validation to invalidate every cursor after a deployment.
On the client
ReactβsuseStreamPaginatedQuery handles page pinning, splitting, and invalid-cursor resets. Foldkitβs PaginatedQuery machine also works with stream-paginated queries: it pins each page it navigates away from, so going back reloads the same range.
The QueryStream type
TypeScript normally infers these parameters fromstream and its composition:
For example, the notes
by_text query has type QueryStream<Note, ["text", "_creationTime"], "asc", DocumentDecodeError, never>. It retains the database access supplied when it was created, so consuming it doesnβt require providing DatabaseReader again. mapEffect and other effectful operations can add errors and service requirements.
A QueryStream<Doc, Key, Direction, E, R> is also a Stream<Doc, E, R>; only QueryStream carries the key and direction types.