IazertyuiopI
IazertyuiopI

Reputation: 488

accessing deleted documents jsonstore

If I remove documents from a collection using accessor.remove(), is it possible for me to find them again as long as they are not physically deleted, or to undelete them?
For exemple, that they do not get returned by findAll but get returned by queries like {identifier:identifier_value}.

Upvotes: 1

Views: 54

Answers (1)

cnandreu
cnandreu

Reputation: 5111

The getPushRequired API will return those documents. They can be filtered using the _deleted attribute.

Upvotes: 2

Related Questions