@jiway/firestorm-core - v1.1.1
    Preparing search index...

    Interface ICanPrecedeStartAt

    Describes a query block that can create a start at clause as its following block

    interface ICanPrecedeStartAt {
        paginate(pageLength: number, pageIndex: number): LimitBlock;
        startAt(start: StartAtClauseStart): StartAtBlock;
    }

    Implemented by

    Index

    Methods

    • Appends a start-at, end-at and limit block to the query to retrieve a portion of the request

      Parameters

      • pageLength: number

        Length of the page

      • pageIndex: number

        Index of the page (0-indexed)

      Returns LimitBlock