with an example
articles = db.collection('articles')
i had to iterate through
for arts in articles:
print arts['field_name']
is there way to get list of articles with custom refining methods such as limit, count? etc?
the all() methods in class definition fetch all, which will affect performance if we had to load all before filtering what we needed instead of filtering upfront and get what we needed.