I'm trying to filter all events by a location displayName. Since location is a complex property and displayName is nested, I need help on how to do this. I've tried the following but neither work.
https://graph.microsoft.com/v1.0/me/events?$expand=location($filter=displayName eq 'East Conference Room')
https://graph.microsoft.com/v1.0/me/events?$filter=location/displayName/'East Conference Room'
https://graph.microsoft.com/v1.0/me/events?$filter=location/displayName eq 'East Conference Room'
? – Shoejep