Microsoft365R icon indicating copy to clipboard operation
Microsoft365R copied to clipboard

Use delta query to track changes

Open harrismcgehee opened this issue 3 months ago • 0 comments

Would it be possible to add a delta query option to the "getters" in this package? It'd be nice to be able to easily operate on the new items since the previous run of code.

https://learn.microsoft.com/en-us/graph/delta-query-overview#use-delta-query-to-track-changes-in-a-resource-collection

I could imagine:

site <- Microsoft365R::get_sharepoint_site()
site$get_list(list_id, delta=TRUE)

or

site <- Microsoft365R::get_sharepoint_site()
site$get_delta_list(list_id, delta=odatadeltaLink)

harrismcgehee avatar Mar 22 '24 20:03 harrismcgehee