Documentation - v1.2.0-alpha.3
    Preparing search index...

    Interface Query<TParams>

    Represents a query with pagination and parameters.

    interface Query<TParams extends Record<string, any>> {
        count: number;
        parameters: TParams;
        skip: number;
    }

    Type Parameters

    • TParams extends Record<string, any>

      The type of the query parameters.

    Index

    Properties

    Properties

    count: number

    The number of items to retrieve.

    parameters: TParams

    The parameters for the query.

    skip: number

    The number of items to skip.