profile image

kaitokosugeppp

prismaを使い、idが1,2,3,4,5,6,7...と自然数で続くpostsテーブルのデータを以下のように取得する際、取得できるデータのidは?
const posts = await prisma.post.findMany({
  skip: 2,
  take: 4,
})