I am working with the Reql, the problem i am facing is that i need to filter the same plucked values in correct order.
After pluck and distinct() apply, value are correct but not in correct order, their order lost.
Sample Query
r.db('DB').table("heroes").orderBy('createdAt')
.pluck({'loc':['coordinates']})
.distinct()
Can anyone help me to modify the query, so that it return data in correct order.
Thanks for your time.