Interface ListingQuery

interface ListingQuery {
    atTime?: string;
    collection: null | string | string[];
    criteria: FormattedCriteria;
    element?: Record<string, never>;
    paginate?: { page: number; "per-page": number };
    projection: { [attribute: string]: string };
    sort: Record<string, -1 | 1>;
}

Properties

atTime?: string
collection: null | string | string[]
element?: Record<string, never>
paginate?: { page: number; "per-page": number }
projection: { [attribute: string]: string }
sort: Record<string, -1 | 1>