I'm just staring out with MongoDB and I'm staring an application with flask-mongoengine and I want to aggregate a few documents.
I'm using flask-mongoengine and when trying
class MyDocumentModel(db.Document):
name = db.StringField(max_length=55)
MyDocumentModel.objects.aggregate()
I get the error:
AttributeError: 'BaseQuerySet' object has no attribute 'aggregate'