interface QueryObservableOpts {
    account?: string;
    client_identifier?: string;
    columns?: string[];
    document?: string;
    limit?: number;
    order?: string[];
    query?: Record<string, any>;
}

Properties

account?: string

Explicit Account the Observable is Linked to

client_identifier?: string

Explicit Universe to look for Observables in

columns?: string[]

Columns of the Observable object to extract

document?: string

Explicit document the observable is linked to

limit?: number

Max number of results to return

order?: string[]
query?: Record<string, any>