headingIdsLengthGreaterThan method
Implementation
QueryBuilder<DictionarySearchResult, DictionarySearchResult,
QAfterFilterCondition> headingIdsLengthGreaterThan(
int length, {
bool include = false,
}) {
return QueryBuilder.apply(this, (query) {
return query.listLength(
r'headingIds',
length,
include,
999999,
true,
);
});
}