-
Notifications
You must be signed in to change notification settings - Fork 37
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
[BaseConnection] fix edge.cursor mismatch. #32
Comments
Hey I would like to work on this. I am beginning work on this. |
How can I go about reproducing this issue? |
For reproducing the issue, make the following query using the graphql playground at `localhost:3000/api/graphql users {
edges {
node {
id
}
cursor
}
pageInfo {
startCursor
endCursor
}
} You will see that the |
@jugshaurya try setting withCredentials as true in the gql playground settings. |
yes, that worked thanks. Working on the issue now |
The cursor for each node generated by the BaseConnection does not match with the start and end cursors generated by Sequelize Pagination.
Check the implementation of the package and replicate/fix the logic of generating cursor in the BaseConnection to match the start and end cursors.
The text was updated successfully, but these errors were encountered: