Was using the go graph sdk today to implement incremental syncing (as described here: https://learn.microsoft.com/en-us/graph/delta-query-events). According to the Go snippets in the documentation, I should be able to set the Skiptoken and Deltatoken fields of the ItemCalendarViewDeltaRequestBuilderGetQueryParameters struct.
However, this struct does not define those fields in the latest Go sdk.
Looking at the openapi yaml in this repository, it appears both $skiptoken and $deltatoken are not defined for the "{user-id}/calendar/calendarview/delta" endpoint.
Was using the go graph sdk today to implement incremental syncing (as described here: https://learn.microsoft.com/en-us/graph/delta-query-events). According to the Go snippets in the documentation, I should be able to set the
SkiptokenandDeltatokenfields of theItemCalendarViewDeltaRequestBuilderGetQueryParametersstruct.However, this struct does not define those fields in the latest Go sdk.
Looking at the openapi yaml in this repository, it appears both
$skiptokenand$deltatokenare not defined for the "{user-id}/calendar/calendarview/delta" endpoint.