Graphcool / graphcool-framework

Apache License 2.0
1.77k stars 131 forks source link

Pagination not working with orderBy #581

Closed michaelcheng924 closed 4 years ago

michaelcheng924 commented 4 years ago

Does Pagination work with orderBy? I'm trying this:

query($sort: TagOrderBy!, $first: Int!, $after: String) {
    allTags(orderBy: $sort, first: $first, after: $after) {

But it doesn't seem to be respecting the orderBy. I'm getting duplicate items in the fetchMore result.