cursors


cursorsCursors

Returns the query cursors.

cursors returns the query's next and prev cursors.

Get the query's cursors
JavaScript
import { schedules } from "@wix/calendar"; export async function myQueryFunction() { const results = await schedules.querySchedules().find(); const cursors = results.cursors; }
Did this help?