Hi all,
I've noticed that the ToDo lists endpoint (v1.0/me/todo/lists) does not return an '@odata.nextLink' url unless the "$top" parameter is specified. If no parameters at all are included, such as below, then only 16 lists are returned, with no "@odata.nextLink" url even if more than 16 lists are owned by the user. This occurs in Graph explorer, as well as from python.
GET https://graph.microsoft.com/v1.0/me/todo/lists
However, if the "$top" parameter is specified like below, then it all works as expected, returning an "@odata.nextLink" url when necessary. This is true even if "$top" is set to exactly 16, which is what the api call would return with no "$top" parameter.
GET https://graph.microsoft.com/v1.0/me/todo/lists?$top=16
Am I missing some reason here why the "@odata.nextLink" url would not be returned normally?
Thanks in Advance!