Interface EventStoreQueryOptions<K>

Standard options for a EventStoreQuery query.

interface EventStoreQueryOptions {
    head?: boolean;
    limit?: number;
    signal?: AbortSignal;
    since?: K[];
}

Type Parameters

  • K

Hierarchy

Properties

head?: boolean

True to return only head events.

limit?: number

Maximum number of events to return.

signal?: AbortSignal

An optional AbortSignal that can be used to abort an async task.

since?: K[]

Events after which result shall be returned.

Generated using TypeDoc