Skip to content

Instantly share code, notes, and snippets.

@aleccool213
Created May 12, 2020 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleccool213/d992536db53f2bc0d900467c759aaf53 to your computer and use it in GitHub Desktop.
Save aleccool213/d992536db53f2bc0d900467c759aaf53 to your computer and use it in GitHub Desktop.
const GITHUB_ISSUES_LIST_QUERY = gql`
${GITHUB_ORG_INFO_CARD_FRAGMENT}
${GITHUB_ISSUE_COUNT_CARD_FRAGMENT}
${GITHUB_ISSUE_INFO_CARD_FRAGMENT}
query GithubIssuesListContainerQuery {
...GithubOrgInfoCardFragment
issues {
...GithubIssueCountCardFragment
pageInfo {
endCursor
hasNextPage
}
edges {
node {
...GithubIssueInfoCardFragment
}
}
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment