table.delete([{durability: "hard", returnChanges: false, ignoreWriteHook: false}]) → object
selection.delete([{durability: "hard", returnChanges: false, ignoreWriteHook: false}]) → object
singleSelection.delete([{durability: "hard", returnChanges: false, ignoreWriteHook: false}]) → object
Delete one or more documents from a table.
The optional arguments are:
durability
: possible values are hard
and soft
. This option will override the
table or query’s durability setting (set in run).
In soft durability mode RethinkDB will acknowledge the write immediately after
receiving it, but before the write has been committed to disk.returnChanges
:
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.)ignoreWriteHook
: If true
, and if the user has the config permission, ignores any write hook, which might have prohibited the deletion.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: <old value>}
.RethinkDB write operations will only throw exceptions if errors occur before any writes. Other errors will be listed in first_error
, and errors
will be set to a non-zero count. To properly handle errors with this term, code must both handle exceptions and check the errors
return value!
Example: Delete a single document from the table comments
.
r.table("comments").get("7eab9e63-73f1-4f33-8ce4-95cbea626f59").delete().run(conn, callback)
Example: Delete all documents from the table comments
.
r.table("comments").delete().run(conn, callback)
Example: Delete all comments where the field idPost
is 3
.
r.table("comments").filter({idPost: 3}).delete().run(conn, callback)
Example: Delete a single document from the table comments
and return its value.
r.table("comments").get("7eab9e63-73f1-4f33-8ce4-95cbea626f59").delete({returnChanges: true}).run(conn, callback)
The result will look 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({durability: "soft"}).run(conn, callback)
Couldn't find what you were looking for?
Contribute: edit this page or open an issue