ateam 1.0.13

The tool that helps optimize the code review process.
Documentation
query Followup($login: String!, $query: String!) {
  search(query: $query, type: ISSUE, first: 100) {
    nodes {
      __typename
      ... on PullRequest {
	title
        # url
	mergeable
        reviews(last: 1, author: $login) {
          nodes {
            state
            url
          }
        }
	reviewThreads(last: 50) {
          nodes {
            # isCollapsed
            isOutdated
            # isResolved
            comments(last: 20) {
              nodes {
                author {
                  __typename
                  login
                }
	        # outdated
              }
            }
          }
        }
      }
    }
  }
}