Create a copy of the current queryset.
(self)
| 819 | return self._clone_into(self.__class__(self._document, collection)) |
| 820 | |
| 821 | def clone(self): |
| 822 | """Create a copy of the current queryset.""" |
| 823 | return self._clone_into(self.__class__(self._document, self._collection_obj)) |
| 824 | |
| 825 | def _clone_into(self, new_qs): |
| 826 | """Copy all the relevant properties of this queryset to |