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
Describe the bug duplicate publishdates will result in: "hasNextPage": true, "endCursor": null
true indicates the excitence of a next page, but quering the "null" endcorsor brings you right back at the start of pagination.
duplicate publishdates are easely made with the bulkeditor, so we have them a lot.
To Reproduce Steps to reproduce thae behavior:
Expected behavior values: "hasNextPage": true, "endCursor": null should never coexcist.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
duplicate publishdates will result in:
"hasNextPage": true,
"endCursor": null
true indicates the excitence of a next page, but quering the "null" endcorsor brings you right back at the start of pagination.
duplicate publishdates are easely made with the bulkeditor, so we have them a lot.
To Reproduce
Steps to reproduce thae behavior:
query productsQuery(
$where: RootQueryToProductUnionConnectionWhereArgs,
$after: String){
products(first: 200, after: $after, where: $where) {
pageInfo{
hasNextPage,
endCursor
}
edges{
cursor
node{
name
}
}
}
}
{"where":{"categoryIdIn":[1623],"orderby":[{"field":"DATE","order":"ASC"}]}, "after":"YXJyYXljb25uZWN0aW9uOjI0MjgzMg=="}
Expected behavior
values:
"hasNextPage": true,
"endCursor": null
should never coexcist.
The text was updated successfully, but these errors were encountered: