Skip to content
New issue

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

Sorting by multiple fields #43

Open
jungwookim opened this issue Jul 20, 2022 · 0 comments
Open

Sorting by multiple fields #43

jungwookim opened this issue Jul 20, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@jungwookim
Copy link
Contributor

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
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant