given the example document
{
"user_id": "user 1",
"log":[
{
"index" : 1,
"position" : 50
},
{
"index" : 2,
"position" : 70
},
{
"index" : 3,
"position" : 60
}
]
},
{
"user_id": "user 2",
"log":[
{
"index" : 1,
"position" : 150
},
{
"index" : 2,
"position" : 570
},
{
"index" : 3,
"position" : 60
}
]
},
how can I return the user_id with the highest position and it's respective index on the mongo own shell? In this case, the result will be:
- user_id="user 2"
- position = 570
- index = 2
Thanks!