sircheferooS
Convex Communityโ€ข16mo agoโ€ข
6 replies
sircheferoo

Convex Paginated Query with TanStack React Query

โ”Advice๐ŸŽFeature Request
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?