I am using django-mongodb-engine.
I have example data as below:
{
"name":[{"first_name":"rajat","last_name":"verma"},{"first_name":"jay","last_name":"patil"},]
}
Now I want to apply sorting on first_name field. I tried to search on google and also looked django-mongodb-engine library. But there is no solution.
Does django-mongodb-engine supports sorting? IS there any solution? Even any little suggestion would be helpful.