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