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