Skip to content

Instantly share code, notes, and snippets.

@zaki-yama
Last active August 29, 2015 14:10
Show Gist options
  • Save zaki-yama/5d46302ecad2ca0f514d to your computer and use it in GitHub Desktop.
Save zaki-yama/5d46302ecad2ca0f514d to your computer and use it in GitHub Desktop.
[Salesforce] 削除済みレコードの取得
List<Event> events = [
select
id,
subject,
startdatetime,
isdeleted
from
Event
order by
createddate desc
limit 50
ALL ROWS
];
for (Event e : events) {
System.debug(LoggingLevel.INFO, e.subject + '---isdeleted: ' + e.isdeleted);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment