I cannot figure out how to convert objects into a JsonArray.
r.db('data').table('user').filter({'_deleted':false}).pluck(['id'])
My result looks like this:
{
"id": "10008590"
},
{
"id": "10006821"
}
And i want it to look like this:
[ "10008590", "10006821"]
what do i add to a query after .pluck()?