Skip to content
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

Pagination broken #29

Closed
kidunot89 opened this issue Apr 18, 2019 · 0 comments
Closed

Pagination broken #29

kidunot89 opened this issue Apr 18, 2019 · 0 comments
Assignees
Labels
bug Something isn't working failing query Issue concerns a failing/broken query

Comments

@kidunot89
Copy link
Member

This has be confirmed for products connection using the query below. It's safe to assume the problem persisted across all ConnectionResolvers extending AbstractConnectionResolver, since pagination is defined virtually the same for each of them.

query GET_PRODUCTS($first: Int $after: String) {
    products(first: $first after: $after) {
      pageInfo {
        hasNextPage
        endCursor
      }
      nodes {
        productId
        name
        description
        slug
        image {
          altText
          uri
          sourceUrl
        }
      }
    }
  }
@kidunot89 kidunot89 added the bug Something isn't working label Apr 18, 2019
@kidunot89 kidunot89 self-assigned this Apr 18, 2019
@kidunot89 kidunot89 added the failing query Issue concerns a failing/broken query label Apr 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working failing query Issue concerns a failing/broken query
Projects
None yet
Development

No branches or pull requests

1 participant