Interface FetchQuery

Describes the query information that is sent to the fetch function.

typeparam

see DataQuery

see

DataQueryOptions

Type parameters

Type parameter Description
QueryType

limit

limit: number

The limit of items to fetch, which is the same as fetchLimit in DataQueryOptions. Note that this is Infinity if the limit is not set.

You do not need to obey this limit, but it serves as a guide for you not to query too many at once.

offset

offset: number

The offset that the fetch function should begin fetching.

query

query: QueryType

The actual fetch query that is passed from DataQuery.fetch or saved when using DataQuery.fetchMore.

Generated using TypeDoc