I'm exporting app specific events to MS Calendar.
To distinguish them from others (for later updating/removing by the app) I set an extended property for them (with SingleValueExtendedProperties
).
I found out how to filter events by the presence (and value) of this extended property (Get events that have an custom property set by an add-in e.g.)
I also found out how to ask for the value of this property by $expand
-ing particular event id -
https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/singlevaluelegacyextendedproperty_get
What I can't find is how to get a list of matched events and this extended property for every item. For all the examples I checked (under the second link there're many) it is stated that The response does not include the matching extended property.
Why so and how then? Obviously, it would be not very performant to get $filter
-ed list and then $expand
every item with the separate requests...
I would be very appreciated for any help/hints/thoughts.