(self, *args, **kwargs)
| 625 | return result |
| 626 | |
| 627 | def aggregate(self, *args, **kwargs): |
| 628 | return self.model.objects(**kwargs)._collection.aggregate(*args, **kwargs) |
| 629 | |
| 630 | def insert(self, instance): |
| 631 | instance = self.model.objects.insert(instance) |
nothing calls this directly
no outgoing calls
no test coverage detected