remove
Arguments
ID (required)
The document ID.
Params (required, mixed)
A plain javascript object of:
collection
: Required, the name of collection you want to work with.withSource
: If you want to get the related document before deleted, set it totrue
. The document will be put undersource
key. Optional, defaults tofalse
Or, you're also allowed to pass a string. In this case, it will be interpreted as the collection name.
Response
Result
It should return an object like the one below:
And with withSource
set to true:
Error
If no document found, it'll yield Document not found error.
Any other error will yield a normal Node error object you can catch through promise easily.
Last updated