I use mongoengine 0.15.0. I have an embedded data structure containing an ListField. I want to access the last/latest item in the list. I am wondering if I can do like this to achieve:
query_set = query_set.filter(fruit__-1__color=red)
If there is any chance can be done by pymongo, it is also welcome.