QueryFilterNot<OBJ, R> extension
Extension for QueryBuilders.
- on
-
- QueryBuilder<
OBJ, R, QFilterCondition>
- QueryBuilder<
Methods
-
allOf<
E, RS> (Iterable< E> items, FilterRepeatModifier<OBJ, OBJ, E> modifier) → QueryBuilder<OBJ, R, QAfterFilterCondition> -
Joins the results of the
modifier
for each item initems
using logical AND. So an object will be included if it matches all of the resulting filters. -
anyOf<
E, RS> (Iterable< E> items, FilterRepeatModifier<OBJ, OBJ, E> modifier) → QueryBuilder<OBJ, R, QAfterFilterCondition> -
Joins the results of the
modifier
for each item initems
using logical OR. So an object will be included if it matches at least one of the resulting filters. -
not(
) → QueryBuilder< OBJ, R, QFilterCondition> - Complement the next filter condition or group.
-
oneOf<
E, RS> (Iterable< E> items, FilterRepeatModifier<OBJ, R, E> modifier) → QueryBuilder<OBJ, R, QAfterFilterCondition> -
Joins the results of the
modifier
for each item initems
using logical XOR. So an object will be included if it matches exactly one of the resulting filters.