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
https://hasura.io/docs/latest/graphql/core/databases/postgres/queries/sorting/#sorting-by-multiple-fields
위 링크와 유사한 지원이 가능하도록 합니다.
요구사항이 복잡해지면 단일 정렬이 아닌 여러 필드의 정렬이 필요합니다. 그에 따라 아래와 같은 인터페이스를 지원하도록 합니다.
query { articles ( order_by: [ {rating: desc}, {published_on: asc_nulls_first} ] ) { id rating published_on } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://hasura.io/docs/latest/graphql/core/databases/postgres/queries/sorting/#sorting-by-multiple-fields
위 링크와 유사한 지원이 가능하도록 합니다.
요구사항이 복잡해지면 단일 정렬이 아닌 여러 필드의 정렬이 필요합니다. 그에 따라 아래와 같은 인터페이스를 지원하도록 합니다.
The text was updated successfully, but these errors were encountered: