.NET - Collection.Query.PagingFrom()

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

using Nitric.Sdk;
using Nitric.Sdk.Resources;

var profiles = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading);

var profileQuery = profiles.Query().PagingFrom(pagingToken);

Nitric.Run();

Parameters

  • Name
    pagingToken
    Required
    Required
    Type
    Dictionary<string, object>
    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