Forum Discussion
nbj-ksdh
1 year agoFrequent Visitor
Fabric GraphQL Pagination
We will be using the new GraphQL API element to expose data from a Lakehouse to an application. The application needs to retrieve a lot of rows (+1mio). I can't find a single example online that show...
- Anonymous1 year ago
Hi nbj-ksdh ,
Thank you for reaching out to Microsoft Fabric Community Forum!We sincerely apologize for the delay in response.Seems your issue is not resolved. Therefore, we request you to consider raising a support ticket to resolve the issue.
To raise a support ticket for Fabric and Power BI, kindly follow the steps outlined in the following guide:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
If this post helps, please give us Kudos and consider marking it Accept as solution to assist other members in finding it more easily.
Je-maintiendrai
1 year agoFrequent Visitor
Adjust the query below by changing the number after (first:
query
{
publicholidays (first:10000, after:null){
items {
countryOrRegion
holidayName
countryRegionCode
date
}
}
}
this worked for me, change the items queried to your data structure. Let me know if it also worked for you