masto
    Preparing search index...

    Interface DefaultPaginationParams

    interface DefaultPaginationParams {
        limit?: number | null;
        maxId?: string | null;
        minId?: string | null;
        sinceId?: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    limit?: number | null

    Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

    maxId?: string | null

    Return results older than this ID.

    minId?: string | null

    Get a list of items with ID greater than this value excluding this ID

    sinceId?: string | null

    Return results newer than this ID.