Pagination
SDK includes async iteration helpers.
for await (const agent of client.agents.listAll({ limit: 50 })) {
console.log(agent.id);
}Generic helper:
import { paginate, collectAll } from "rooaak";SDK includes async iteration helpers.
for await (const agent of client.agents.listAll({ limit: 50 })) {
console.log(agent.id);
}Generic helper:
import { paginate, collectAll } from "rooaak";