We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
목록 조회 시 주어진 조건에 맞는 데이터를 다수 조회할 수 있습니다. 조회되는 데이터의 순서를 일관되게 하기 위해서 데이터를 정렬하여 반환해야 합니다. 정렬시켜야 하는 2가지 이유가 존재합니다.
order
cursor
Cursor로 지정하는 필드는 조회하는 데이터의 정렬 상태에 의존합니다. 정렬 기준에 따라 Cursor 값도 변경되어야 합니다.
The text was updated successfully, but these errors were encountered:
테스트해봤는데 커서는 정렬 기준 바뀌어도 똑같이 ID 써도 되더라고요.
Sorry, something went wrong.
No branches or pull requests
Describe the problem and solution
정렬 기준 지정
목록 조회 시 주어진 조건에 맞는 데이터를 다수 조회할 수 있습니다. 조회되는 데이터의 순서를 일관되게 하기 위해서 데이터를 정렬하여 반환해야 합니다. 정렬시켜야 하는 2가지 이유가 존재합니다.
order
option이 없을 때 데이터의 순서가 생성된 순임을 보장할 수 없음.order
또는cursor
option 없이 findMany로 조회했을 때, id가 뒤죽박죽인 경우가 존재함.이를테면, Notice를 조회하는데 최신순으로 보여주는 것이 더 좋지 않을까..?
Cursor 기준 필드 다양화Cursor로 지정하는 필드는 조회하는 데이터의 정렬 상태에 의존합니다. 정렬 기준에 따라 Cursor 값도 변경되어야 합니다.Validations
The text was updated successfully, but these errors were encountered: