Returns the query cursors.
cursors
returns the query's next
and prev
cursors.
import { taxRegions } from "wix-billing.v2";
export async function myQueryFunction() {
const results = await taxRegions.queryTaxRegions().find();
const cursors = results.cursors;
}