Interface for data processing components that can query a list of data items.
Description
The IQuerableReader interface is used by data processing components that can query a list of data items.
Instance methods
getListByQuery
Gets a list of data items using a query string.
Future<List<T>> getListByQuery(String? correlation_id, String? query, SortParams? sort)
- correlationId: String? - (optional) transaction id used to trace execution through the call chain.
- query: String? - (optional) query string
- sort: SortParams? - (optional) sorting parameters
- returns: Future<List<T>> - list of items