We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hey Folks,
Looking for help to connect to Microsoft Graph and pull more than 999 records. Currently, below is working but not pulling all records
Thanks
(GraphURI as text) as record =>
let
ResourceAppIdUrl = "https://graph.microsoft.com",
OAuthUrl = "https://login.microsoftonline.com/",
Resource = Text.Combine({"resource", Uri.EscapeDataString(ResourceAppIdUrl)}, "="),
ClientId = Text.Combine({"client_id",ApplicationID}, "="),
ClientSecret = Text.Combine({"client_secret", Uri.EscapeDataString(ApplicationSecret)}, "="),
GrantType = Text.Combine({"grant_type", "client_credentials"}, "="),
Body = Text.Combine({Resource, ClientId, ClientSecret, GrantType}, "&"),
AuthResponse= Json.Document(Web.Contents(
OAuthUrl,
[
RelativePath= Text.Combine({TenantGUID,"/oauth2/token"}),
Content=Text.ToBinary(Body)
]
)),
AccessToken= AuthResponse[access_token],
Bearer = Text.Combine({"Bearer", AccessToken}, " "),
Response = Json.Document(Web.Contents(
ResourceAppIdUrl,
[
RelativePath = GraphURI,
Headers = [#"Content-Type"="application/json", #"Authorization"=Bearer]
]
))
in
Response
Hi,
The results are paged.
From https://learn.microsoft.com/en-us/graph/paging
If the result contains more results, Microsoft Graph will return an @odata.nextLink property...
If you look at the request response, you should see the next link there and you can use it to request the next page
I recently answered a question related to paging:
If this answer helped, please consider marking it as a solution.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 10 | |
| 8 | |
| 7 | |
| 7 | |
| 5 |