1. distinct - 중복 제거 const uniquePostTitles = await prisma.post.findMany({ distinct: ['title'], }); distinct에 중복 제거를 적용하고싶은 컬럼명을 작성하면 된다. [ { Id: 1, title: 'abc', }, { Id: 2, title: 'efg', }, { Id: 3, title: 'abc', }, { Id: 4, title: 'efg', }, ] 위와 같은 데이터에 사용할 경우 [ { Id: 1, title: 'abc', }, { Id: 2, title: 'efg', } ] 이처럼 중복된 필드값을 가지고 있는 데이터들은 그 중 더 낮은 id값을 가지고 있는 데이터 한개만 표시된다. 2. cursor - 리스트를 특정..