You need to sign in to do that
Don't have an account?

SOQL isDeleted
Am sure this is something silly...
I delete a contact & run the following SOQL but get no results - I have read access on that Contact.
Code:
SELECT Id, isDeleted FROM Contact WHERE isDeleted = true
Any clues?

Mr Lavu, use QueryAll LOL

A case of RTFM...needed ALL ROWS at the end.
Code:

Hi Sai,
Great finding!

So how does this isdeleted work in SOQL? i did similar test, deleted a row and then tried to retrieve it using the filter 'isdeleted=True' but no rows returned. Is there something for SOQL and tthat i can test via workbench SOQL interface.