I am trying to execute several RQL commands in one request to the server, but I can add without much success. I tried r.union , but it only works with sequences. I really want:
[r.db(..).table(..).get(id1).delete(), r.db(..).table(..).get(id2).delete(), r.db(..).table(..).insert(...)].run_all_at_once
Is there any way to do this?
Thanks!
ruby rethinkdb rethinkdb-ruby
Pjk
source share