List events including deleted ones
This example shows how to include deleted events in the results by setting ShowDeleted='true'. Deleted events are typically hidden, but this parameter allows you to view them for auditing or recovery purposes.
Warning: Deleted events may have limited data available.
SELECT *
FROM Events
WITH (CalendarId='primary',
ShowDeleted='true')