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