I can view all the documents in a table with this:
r.db('database').table('users')
But how can I list the uuid for each document/user?
I can view all the documents in a table with this:
r.db('database').table('users')
But how can I list the uuid for each document/user?
If you want to list only the ids, you can use the
mapfunction:other option would be the to use
pluck(this will include the field name in the return object):