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