cursors


cursorsCursors

Returns the query cursors.

cursors returns the query's next and prev cursors.

Get the query's cursors
JavaScript
import { serviceFees } from "wix-restaurants.v2"; export async function myQueryFunction() { const results = await serviceFees.queryRules().find(); const cursors = results.cursors; }
Did this help?