Returns a copy of the current QuerySet.
(self)
| 223 | # Core functions |
| 224 | |
| 225 | def all(self): |
| 226 | """Returns a copy of the current QuerySet.""" |
| 227 | return self.__call__() |
| 228 | |
| 229 | def filter(self, *q_objs, **query): |
| 230 | """An alias of :meth:`~mongoengine.queryset.QuerySet.__call__`""" |