startgg-helper-node
Version:
A set of functions and classes useful to communicate with the start.gg API.
9 lines (7 loc) • 322 B
JavaScript
import { Query } from "startgg-helper";
import { schema } from "./paginatedCommon.js";
let query = new Query(schema, 3);
export async function testPaginated(client){
let result = await query.executePaginated(client, {slug: "tournament/tls-mad-ness-25/event/1v1-ultimate"}, "event.sets");
return result;
}