Node.js - collection.query.pagingFrom()

Set a point to resume a query from, this is required when continuing a paginated query response.

import { collection } from '@nitric/sdk'

const profiles = collection('profiles').for('reading')

const profileQuery = profiles.query().pagingFrom(pagingToken)

Parameters

  • Name
    pagingToken
    Required
    Required
    Type
    Map<string, string>
    Description

    The paging token to apply to the query. Tokens are returned from query().fetch(), when results cannot be returned in a single page.

See also