kolharsam / graphql-engine-rs

UNOFFICIAL - The Hasura GraphQL Engine - in Rust
GNU General Public License v3.0
9 stars 1 forks source link

graphql: support `limit`, `offset` and `distinct_on` clauses in a query #12

Closed kolharsam closed 3 years ago

kolharsam commented 3 years ago

Support queries like this one:


query {
  user(distinct_on: name, limit: 10, offset: 10) {
    name
    uid
  }
}