Skip to content

Conversation

@patrickthornton
Copy link

Unifies around

let page = await client.actions.list();
while (page.hasNextPage()) {
    console.log(page);
    page = await page.getNextPage();
}

in documentation, with

const response = await client.actions.list();
for await (const item of response) {
    console.log(item);
}

as a listed alternative.

@patrickthornton patrickthornton requested a review from a team as a code owner October 30, 2025 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant