Mongoid supports soft deletion with
include Mongoid::Paranoia
Lets suppose i have soft deleted a document from one of the collection.
Now I need a query that includes a soft deleted document from that collection.
How can I do that?
Do I need to make a separate method for this to achieve?
Thanks