Hello Cody Nugent,
Thank you for contacting Microsoft!
For pulling page titles using Graph API if there are more than 100 pages in a section, can you please try below mentioned work arounds:
- When you make a request that returns multiple pages of data, the response includes an
@odata.nextlink
property. You can use this link to fetch the next page of results until there are no more pages. - Some APIs allow you to specify the number of results per page using query parameters like
$top
You can try increasing the page size to reduce the number of requests you need to make. - If your application allows, consider batching multiple requests together to reduce the number of round trips to the server.
- Implementing caching mechanism to store previously fetched data and reduce the number of API calls.
After trying the work arounds, if the issue still persists, You can submit this feature request using this support link, which will be monitored by Microsoft team and make the enhancements to Graph API.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.