tagsLengthLessThan method
Implementation
QueryBuilder<DictionaryEntry, DictionaryEntry, QAfterFilterCondition>
tagsLengthLessThan(
int length, {
bool include = false,
}) {
return QueryBuilder.apply(this, (query) {
return query.linkLength(r'tags', 0, true, length, include);
});
}