interface DatabaseGetOperation {
    query: Record<string, any>;
    broadcast: false;
    index: boolean;
    indexFields: string[];
    pack: string;
    parent: any;
    parentUuid: string;
}

Properties

query: Record<string, any>

A query object which identifies the set of Documents retrieved

broadcast: false

Get requests are never broadcast

index: boolean

Return indices only instead of full Document records

indexFields: string[]

An array of field identifiers which should be indexed

pack: string

A compendium collection ID which contains the Documents

parent: any

A parent Document within which Documents are embedded

parentUuid: string

A parent Document UUID provided when the parent instance is unavailable