TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Type Alias EntityDataQuery

    type EntityDataQuery = {
        amount?: number;
        endDate?: string;
        filter?: Record<
            string,
            string
            | { end: string | null; start: string | null },
        >;
        index?: string;
        order?: any;
        page?: number;
        skip?: number;
        startDate?: string;
    }
    Index

    Properties

    amount?: number

    Amount of items to be fetched.

    endDate?: string

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

    filter?: Record<string, string | { end: string | null; start: string | null }>

    Filters to narrow down the requests from the API.

    index?: string

    Index to use for the query.

    order?: any

    Ordering for the requested data.

    page?: number
    skip?: number

    Amount of items to be skipped.

    startDate?: string

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