coffee
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, DateCompare compare, dynamic value)
→ CoffeeQueryFilter
-
Creates a filter for date searches.
-
whereDayAndMonthAndYearEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for day, month, and year-based searches.
-
whereDayAndMonthEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for day and month-based searches.
-
whereDayAndYearEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for day and year-based searches.
-
whereDayEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for day-based 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.
-
whereMonthAndYearEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for month and year-based searches.
-
whereMonthEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for month-based 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.
-
whereYearEqual(dynamic property, DateTime value)
→ CoffeeQueryFilter
-
Creates a filter for year-based searches.
-
withQueryParameter(dynamic type, dynamic value)
→ CoffeeQueryFilter
-
Creates a filter for query parameters.