Infinite scroll w/ Drizzle + tRPC

Has anyone implemented infinite scrolling/pagination using Drizzle? The example in the tRPC docs uses Prisma, which has a built-in cursor parameter for pagination. What would one use for Drizzle?

https://trpc.io/docs/client/react/useInfiniteQuery
  • Your procedure needs to accept a cursor input of any type (string, number, etc) to expose this hook.
Was this page helpful?