Helpful
    Preparing search index...

    Interface IZDataRequest

    Describes a request for a given set of data.

    interface IZDataRequest {
        filter?: IZFilter;
        page?: number;
        search?: string;
        size?: number;
        sort?: IZSort[];
    }
    Index

    Properties

    filter?: IZFilter

    The filter query.

    How the filter is applied is done through the consumer.

    ZDataFilterFields for a basic implementation.

    page?: number

    The page number.

    This is one based. Should always default to 1.

    search?: string

    Search query.

    How the search is performed is done through the consumer.

    ZDataSearchFields for a basic implementation.

    size?: number

    The page size.

    If not set, it will be up to the consumer to decide the default.

    sort?: IZSort[]

    The sort order.

    How the sort is applied is done through the consumer.

    ZSorterSingle for a basic implementation.