good-first-issue-finder icon indicating copy to clipboard operation
good-first-issue-finder copied to clipboard

add pagination to issues

Open Cahllagerfeld opened this issue 3 years ago • 0 comments

query EddieHubIssues($query: String!, $skip: Int!) {
  search(first: $skip, after: null , query: $query, type: ISSUE) {
    issueCount
+     pageInfo {
+     hasNextPage
+     endCursor
    }
    edges {
      node {
        ... on Issue {
          url
          title
          repository {
            name
            owner {
              login
            }
          }
        }
      }
    }
  }
}

### variables

we should add this with an more button below the items, to make sure the footer can be reached properly

Cahllagerfeld avatar Jan 29 '22 12:01 Cahllagerfeld