request/coffee-query-filter
library
Functions
-
sortBy(dynamic property, SortDirection sort)
→ CoffeeQueryFilter
-
Creates a filter for sorting.
-
where(dynamic type, WhereOperator operator, dynamic value)
→ CoffeeQueryFilter
-
Creates a filter for exact condition searches.
-
whereContains(dynamic type, String value)
→ CoffeeQueryFilter
-
Creates a filter for containment searches.
-
whereDate(dynamic type, WhereOperator operator, DateTime date, {String filterBy = 'full-date'})
→ CoffeeQueryFilter
-
Creates a filter for date searches.
-
whereIn(dynamic type, List values)
→ CoffeeQueryFilter
-
Creates a filter for inclusion searches.
-
whereIs(dynamic type, bool value)
→ CoffeeQueryFilter
-
Creates a filter for boolean condition searches.
-
whereNotIn(dynamic type, List values)
→ CoffeeQueryFilter
-
Creates a filter for exclusion searches.
-
whereOr(List<List<CoffeeQueryFilter>> filters)
→ CoffeeQueryFilter
-
Creates a filter for OR condition searches.
-
withQueryParameter(dynamic type, dynamic value)
→ CoffeeQueryFilter
-
Creates a filter for query parameters.