IQuerablePageReader<T>

Interface for data processing components that can query a page of data items.

Description

The IQuerablePageReader interface is used by data processing components that can query a page of data items.

Instance methods

getPageByQuery

Gets a page of data items using a query string.

Future<DataPage<T>> getPageByQuery(IContext? context, String? query, PagingParams? paging, SortParams? sort)

  • context: IContext - (optional) a context to trace execution through a call chain.
  • query: String? - (optional) query string
  • paging: PagingParams? - (optional) paging parameters
  • sort: SortParams? - (optional) sorting parameters
  • returns: Future<DataPage<T>> - list of items