when the record is above 1000 it is give an "@odata.nextLink": "https://graph.microsoft.com/v1.0/communications/callRecords/getDirectRoutingCalls(fromDateTime=2022-11-17,toDateTime=2022-12-14)?$top=10&$skip=1000",
to get the record of after 1000 records so is there any thing I can do in the plugin to automatically call nextLink when data is above 1000 rows
this is my json I am getting 1000 values with dates can I group dates with how many dates in same row to show in graph? like this data represent calls so I want to show like at 16 dec there are 50 calls in the array
thank you for your solution and it works like a charm but the thing is I cant see data above 1000 because there is a limit of 1000 only by the ms graph api see in the teams graph data is above 1000 and in grafana it is showing only 1000 is there a way to get other data by the next link to call automatically see this url for better understanding callRecord: getDirectRoutingCalls - Microsoft Graph v1.0 | Microsoft Learn
If there are more than 1000 entries in the date range, the body also includes an @odata.NextLink with a URL to query the next page of call entries. The last page in the date range does not have @odata.NextLink . For more information, see paging Microsoft Graph data in your app.