Interface RawListingQuery

interface RawListingQuery {
    atTime?: string;
    collection?: null | string | string[];
    criteria: RawCriteria;
    groups?: boolean;
    paginate?: { page: number; "per-page": number };
    projection: Record<string, `$${string}.value`>;
    sort?: { [key: string]: -1 | 1 };
}

Properties

atTime?: string
collection?: null | string | string[]
criteria: RawCriteria
groups?: boolean
paginate?: { page: number; "per-page": number }
projection: Record<string, `$${string}.value`>
sort?: { [key: string]: -1 | 1 }