Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
briansull
Regular Visitor

MS Graph ODatalink paging

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

 

 

 

 

1 REPLY 1
ams1
Super User
Super User

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.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors