ReQL command: row
Command syntax
r.row → value
Description
Returns the currently visited document.
Note that row does not work within subqueries to access nested documents; you should use anonymous functions to access those documents instead. (See the last example.)
Example: Get all users whose age is greater than 5.
r.table('users').filter(r.row['age'] > 5).run(conn)
Example: Access the attribute ‘child’ of an embedded document.
r.table('users').filter(r.row['embedded_doc']['child'] > 5).run(conn)
Example: Add 1 to every element of an array.
r.expr([1, 2, 3]).map(r.row + 1).run(conn)
Example: For nested queries, use functions instead of row.
r.table('users').filter(
lambda doc: doc['name'] == r.table('prizes').get('winner')
).run(conn)
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub
Contribute: edit this page or open an issue