deptyped / prisma-extension-pagination

Prisma Client extension for pagination
https://npmjs.com/prisma-extension-pagination
MIT License
227 stars 17 forks source link

Add ability to query data between cursors #28

Open deptyped opened 5 months ago

deptyped commented 5 months ago

For example, to find all users between cursors "1" and "100" (exclusive):

const [users, meta] = await prisma.user
  .paginate()
  .withCursor({
    after: "1",
    before: "100"
  });