Navigation Menu

Skip to content

GraphQL resolved conversations #24854

Discussion options

You must be logged in to vote

The PullRequestReviewThread contains this information.  The following query works as an example.  I believe in your case you’d have to iterate through the results looking for isResolved = false.

query {
  repository(owner:"github", name:"github") {
    pullRequests(last: 50){
      nodes {
        id,
        reviewThreads(last:50) {
          nodes{
            id,
            isResolved
          }
        }
      }
    }
  }
}

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants