Paging and Delta Updates in Graph API
This is a quick blog post to summarise how to work through paging and delta updates in Graph API. Examples are in Typescript but you can adapt to the different SDKs Microsoft provides. Paging If you’ve called an API before you will most likely encountered paging before. Paging is where you receive a “page” of data, instead of all of it one go (think a page in a book as opposed to the whole book). Paging works in that you request each page separately from an API and, if required, request multiple pages if more data is required. ...