table.delete() → object selection.delete() → object singleSelection.delete() → object
Delete one or more documents from a table.
You can pass the following options using optArg:
durability
: possible values are hard
and soft
. This option will override the table or query’s durability setting (set in run).return_changes
: true
: return a changes
array consisting of old_val
/new_val
objects describing the changes made, only including the documents actually updated.false
: do not return a changes
array (the default)."always"
: behave as true
, but include all documents the command tried to update whether or not the update was successful. (This was the behavior of true
pre-2.0.)delete
returns an object that contains the following attributes:
deleted
: the number of documents that were deleted.skipped
: the number of documents that were skipped.errors
: the number of errors encountered while performing the delete.first_error
: If errors were encountered, contains the text of the first error.inserted
, replaced
, and unchanged
: all 0 for a delete operation..changes
: if returnChanges
is set to true
, this will be an array of objects, one for each objected affected by the delete
operation. Each object will have two keys: {new_val:null,old_val:<oldvalue>}
.RethinkDB write operations will only throw exceptions if errors occur before any writes. Other errors will be listed in
first_error
, anderrors
will be set to a non-zero count. To properly handle errors with this term, code must both handle exceptions and check theerrors
return value!
Example: Delete a single document from the table comments
.
r.table("comments").get("7eab9e63-73f1-4f33-8ce4-95cbea626f59").delete().run(conn);
Example: Delete all documents from the table comments
.
r.table("comments").delete().run(conn);
Example: Delete all comments where the field idPost
is 3
.
r.table("comments").filter(r.hashMap("idPost", 3)).delete().run(conn);
Example: Delete a single document from the table comments
and return its value.
r.table("comments").get("7eab9e63-73f1-4f33-8ce4-95cbea626f59") .delete().optArg("return_changes", true).run(conn);
The result looks like:
{ "deleted": 1, "errors": 0, "inserted": 0, "changes": [ { "new_val": null, "old_val": { "id": "7eab9e63-73f1-4f33-8ce4-95cbea626f59", "author": "William", "comment": "Great post", "idPost": 3 } } ], "replaced": 0, "skipped": 0, "unchanged": 0 }
Example: Delete all documents from the table comments
without waiting for the operation to be flushed to disk.
r.table("comments").delete().optArg("durability", "soft").run(conn);
Couldn't find what you were looking for?
© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/java/delete/