sample data, for example:
{ 'id': 1, 'things': [{'name': 'a'},{'name': 'b'},{'name': 'c'}] }
how to update a document by deleting an array element named "b" from the inline array?
r.table('test') .get(1) .update({things: r.row('things')????});
source share