fetch method
Implementation
CollectionQL fetch(Filter filter, {bool inplace = true}) {
return CollectionQL(
super
.where((doc) => filter.apply(doc))
.map((doc) => inplace ? doc : Document(doc.toJsonMap()))
.toList()
);
}
CollectionQL fetch(Filter filter, {bool inplace = true}) {
return CollectionQL(
super
.where((doc) => filter.apply(doc))
.map((doc) => inplace ? doc : Document(doc.toJsonMap()))
.toList()
);
}