v8.0.0-rc.6-dev.1: feat(orm): rename take/skip to limit/offset (#30112)
- Prisma: 13 events in the last 90 days
- Prisma: 13th Release in the last 90 days
- Previous: earlier the same day · v8.0.0-rc.6
What happened
Linked issue n/a — no Linear ticket. At a glance u.id.asc()) .offset(10) .limit(10) .all();"> const page2 = await db . orm . User . orderBy ( ( u ) => u . id . asc ( ) ) . offset ( 10 ) . limit ( 10 ) . all ( ) ; The same ORM query previously used .skip(10).take(10) . Decision This PR ships a breaking rename of ORM collection pagination from .take(n) / .skip(n) to .limit(n) / .offset(n) across root SQL collections,…
Summary assembled by rule from the sources below