Interface RawListingQuery

interface RawListingQuery {
    collection?: null | string | string[];
    criteria: {
        author?: string;
        organization?: string;
        timestamp?: RawCriterium;
    } & { $or?: RawCriteria[] } & RawCriteria;
    groups?: boolean;
    paginate?: { page: number; "per-page": number };
    projection: Record<string, string>;
    sort?: { [key: string]: -1 | 1 };
}

Properties

collection?: null | string | string[]
criteria: { author?: string; organization?: string; timestamp?: RawCriterium } & {
    $or?: RawCriteria[];
} & RawCriteria
groups?: boolean
paginate?: { page: number; "per-page": number }
projection: Record<string, string>
sort?: { [key: string]: -1 | 1 }