union method
UNION - combines results from two queries (removes duplicates)
Implementation
@override
QueryBuilderInterface<T> union(QueryBuilderInterface<T> query) {
_unions.add({
'query': query,
'all': false,
});
return this;
}
UNION - combines results from two queries (removes duplicates)
@override
QueryBuilderInterface<T> union(QueryBuilderInterface<T> query) {
_unions.add({
'query': query,
'all': false,
});
return this;
}