Another request that seems to be busted. I'm trying to implement pagination. The query is fine if I set the cursor to null. If I send the cursor in, the response always responds with an empty edges array.
I've verified that I'm using the correct cursor, and that there are additional records. The request with a null cursor responds with the appropriate edges, hasNextPage: true, and it returns a cursor, so there's definitely more to retrieve.
This is the query I'm using:
query ListGames ($cursor: String) {
gamesGamesgamesgamesgamesGame (
first: 1
after: $cursor
) {
edges {
node {
name
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
Fixed in 0.20.1