Githawk: Your Issues/Pull Requests

Created on 16 Dec 2017  Β·  4Comments  Β·  Source: GitHawkApp/GitHawk

GitHub has the following two pages:
https://github.com/pulls
https://github.com/issues

These show all of your open pull requests and issues irrespective of their repository, would be nice if we could surface this somehow (maybe as an extension to user profiiles #317 if it's my profile?)

πŸ†• feature request

Most helpful comment

@BasThomas v4 request outputs the same information as https://github.com/issues (Haven't checked v3, but we'd want v4 anyway πŸ˜‰)

query {
  viewer {
    issues(first: 10, orderBy: { field: CREATED_AT, direction:DESC }) {
      nodes {
        ... on Issue {
          title
        }
      }
    }
  }
}

All 4 comments

I recall there not being APIs for this, but not sure... πŸ€”

Sent with GitHawk

@BasThomas v4 request outputs the same information as https://github.com/issues (Haven't checked v3, but we'd want v4 anyway πŸ˜‰)

query {
  viewer {
    issues(first: 10, orderBy: { field: CREATED_AT, direction:DESC }) {
      nodes {
        ... on Issue {
          title
        }
      }
    }
  }
}

One option for this would be to be able to bookmark specific queries, not just entire repos. β€” For example, with pull requests and issues:

is:open assignee:benguild

... I often type this manually in, but this seems avoidable if bookmarks supported jumping directly to this screen.

Tracking in #2413

Was this page helpful?
0 / 5 - 0 ratings

Related issues

BasThomas picture BasThomas  Β·  35Comments

Huddie picture Huddie  Β·  40Comments

bmeverett picture bmeverett  Β·  26Comments

mvrozanti picture mvrozanti  Β·  20Comments

ijm8710 picture ijm8710  Β·  52Comments