You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am experiencing an issue with pagination in versions 0.20 and 0.21. This bug did not exist in version 0.19. When I set the after parameter, I get the same results as if the after attribute were not set, regardless of the key used from pageInfo.
Describe the bug
I am experiencing an issue with pagination in versions 0.20 and 0.21. This bug did not exist in version 0.19. When I set the after parameter, I get the same results as if the after attribute were not set, regardless of the key used from pageInfo.
To Reproduce
query Products {
products(
first: 20
where: {orderby: {field: MENU_ORDER, order: ASC}, category: "foo"}
after: ""
) {
nodes {
name
}
pageInfo {
endCursor
hasNextPage
}
}
}
Plugin Versions
The text was updated successfully, but these errors were encountered: