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  ยท  3Comments

rizwankce picture rizwankce  ยท  3Comments

BasThomas picture BasThomas  ยท  3Comments

rnystrom picture rnystrom  ยท  3Comments

rnystrom picture rnystrom  ยท  3Comments