prisma / docs

📚 Prisma Documentation
https://www.prisma.io/docs
Apache License 2.0
976 stars 765 forks source link

Add pagination section to API docs #455

Closed 2color closed 4 years ago

2color commented 4 years ago

What

In a similar fashion to how we have a Filtering section, we should add a section on pagination.

Why

Example

Before:

const paginatedPosts3 = await prisma.post.findMany({
  first: 5,
  after: 43834,
})

After:

const paginatedPosts3 = await prisma.post.findMany({
  first: 5,
  after: { id: 43834},
})
mhwelander commented 4 years ago

Pagination pull request merged: https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/pagination