EntityDataQuery: {
    amount?: number;
    endDate?: string;
    filters?: Record<string, string | {
        end: string | null;
        start: string | null;
    }>;
    order?: any;
    page?: number;
    skip?: number;
    startDate?: string;
}

Type declaration

  • Optional amount?: number

    Amount of items to be fetched.

  • Optional endDate?: string

    Timestamp to pin the requested data up to a specific end date.

  • Optional filters?: Record<string, string | {
        end: string | null;
        start: string | null;
    }>

    Filters to narrow down the requests from the API.

  • Optional order?: any

    Ordering for the requested data.

  • Optional page?: number
  • Optional skip?: number

    Amount of items to be skipped.

  • Optional startDate?: string

    Timestamp to pin the requested data to a specific start date.