Returns the query cursors.
cursors
returns the query's next
and prev
cursors.
import { schedules } from "@wix/calendar";
export async function myQueryFunction() {
const results = await schedules.querySchedules().find();
const cursors = results.cursors;
}