The Candid Startup
    Preparing search index...

    A range of LogEntry values returned by querying an EventLog

    interface QueryValue<T extends LogEntry> {
        endSequenceId: bigint;
        entries: T[];
        isComplete: boolean;
        lastSnapshot?: SnapshotValue;
        startSequenceId: bigint;
    }

    Type Parameters

    Index

    Properties

    endSequenceId: bigint

    Sequence id after the final entry in entries

    If query was up to the end sequence id AND isComplete is true, this is the next available sequence id for addEntry.

    entries: T[]

    The LogEntry records returned by the query

    isComplete: boolean

    True if all the requested entries have been returned

    Queries may return fewer entries than requested. If isComplete is false, repeat the query starting from nextSequenceId.

    lastSnapshot?: SnapshotValue

    Most recent snapshot

    Returned if query includes snapshotId argument and most recent snapshot is different.

    startSequenceId: bigint

    Sequence id corresponding to the first entry in entries

    All other entries have consecutive ascending sequence ids