Reputation: 105
I am using GitHub rest api v3. I am aware that using search api https://developer.github.com/v3/search/#search-issues we can query issues in GitHub. However, I am interested in querying the issue which is created or assigned to me.
(i.e) Repository = xxxxxxxxx https://api.github.com/user/issues -> using this i can get the issues assigned to me, but i want to get the issues which has the state as open.
How can i query this, also let me know other possible ways for querying.
Upvotes: 1
Views: 408
Reputation: 1323793
GitHub just announced (January 2020, 2+ years later):
You can now create and share search queries that resolve to the current user by using the
@me
search syntax.For example, navigating to https://github.com/search?q=is%3Aissue+state%3Aopen+assignee%3A%40me (when logged into GitHub) will return all the open issues that are assigned to you.
You can also type
assignee:@me is:issue state:open
into any search field to return the same results.
Upvotes: 0