sircheferooS
Convex Communityβ€’14mo agoβ€’
6 replies
sircheferoo

Convex Paginated Query with TanStack React Query

Is there out of the box support for Convex paginated queries with React Query? Or do we need to handle it ourselves?
const { data, isPending, error } = useQuery(
  // convexQuery(api.functions.myQuery, { id: 123 }),
  convexPaginatedQuery(api.functions.myPaginatedQuery, { id: 123 }), // Something like this?
);
Was this page helpful?