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
I found this bug in playing around with example-api-gateway.
Poll connection works if after is not given:
after
{queryPoll(first: 2) {pageInfo{hasNextPage startCursor endCursor} edges {node {id}}}}
{ "data": { "queryPoll": { "pageInfo": { "hasNextPage": true, "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", "endCursor": "YXJyYXljb25uZWN0aW9uOjE=" }, "edges": [ { "node": { "id": 1 } }, { "node": { "id": 2 } } ] } } }
It doesn't work if a correct after which is the value of endCursor is given
{queryPoll(after: "YXJyYXljb25uZWN0aW9uOjE=" first: 2) {pageInfo{hasNextPage startCursor endCursor} edges {node {id}}}}
{ "data": { "queryPoll": null }, "errors": [ { "message": "invalid input syntax for type bigint: \"YXJyYXljb25uZWN0aW9uOjE=\"", "locations": [ { "line": 2, "column": 3 } ], "path": [ "queryPoll" ] } ] }
But it does if a wrong after which is the id value of last item of edges' node is given
{queryPoll(after: "2" first: 2) {pageInfo{hasNextPage startCursor endCursor} edges {node {id}}}}
{ "data": { "queryPoll": { "pageInfo": { "hasNextPage": true, "startCursor": "YXJyYXljb25uZWN0aW9uOjA=", "endCursor": "YXJyYXljb25uZWN0aW9uOjE=" }, "edges": [ { "node": { "id": 3 } }, { "node": { "id": 4 } } ] } } }
The text was updated successfully, but these errors were encountered:
fix(api-gateway): 🐛 graphql relay connection findAll do not work (lec…
04e3c1d
…le#120)
fix(api-gateway): 🐛 use connection name as prefix when create cursor (l…
d93c71b
…ecle#120)
fix(api-gateway): ✅ add unit test (lecle#120)
20636e8
boomspeed94
No branches or pull requests
I found this bug in playing around with example-api-gateway.
Poll connection works if
after
is not given:It doesn't work if a correct
after
which is the value of endCursor is givenBut it does if a wrong
after
which is the id value of last item of edges' node is givenThe text was updated successfully, but these errors were encountered: