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
kunal1120
New Member

List.Generate function returning the same value while calling a rest API which supports cursor

Hi, I am trying to get data from a rest API which sends the cusor information for the next page. I am geeting the same cursor back as It keeps on triggering the initial condition in List. Gernate

 

My code 

 

let
    FnGetOnePage =  (cursor_ as text) => Json.Document(Web.Contents(URLEndPoint,[
            Headers = [#"Content-Type"="application/json", #"Authorization"=token],
            Content = Text.ToBinary("{""kind"": """ & kind & """,""limit"": """ & Number.ToText(100) & """, ""cursor"": """ & cursor_ & """}")
            ]))

GeneratedList = List.Generate(
                       ()=> [res = FnGetOnePage("")],
                           each [res][cursor]<>null,
                           each [res = FnGetOnePage([res][cursor])]                                                              
                       ) 
in 
      x
1 REPLY 1
v-stephen-msft
Community Support
Community Support

Hi @kunal1120 ,

 

You may kindly refer to

Part 2: Programming "Do-Loop" loops with List-Generate() in M for Power Query - data-insights.de: Mi...

List.Generate in Power Query: Tutorial with Easy Examples

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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