You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The github page allows searching pull requests by organization (see for example the weekly PRs link in this week in rust).
This allows a more fine grained query (as opposed to getting all queries and filtering them after the fact) and may help conserve bandwidth. It does need an authenticated user, though, as far as I know.
The text was updated successfully, but these errors were encountered:
Thank you for your issue! I’ve started work on implementing the search API. I’ll have an initial implementation with the next couple of days for issues and pull requests and then other search endpoints can be added later as needed.
I've just pushed an initial version of the search API onto master. You can use it like the following (of course you need to provide an authentication token first if required by github).
let page = octocrab::instance().search().issues_or_pulls("GitHub Octocrab in:readme user:ferris").sort("comments").order("asc").send().await?;
The github page allows searching pull requests by organization (see for example the weekly PRs link in this week in rust).
This allows a more fine grained query (as opposed to getting all queries and filtering them after the fact) and may help conserve bandwidth. It does need an authenticated user, though, as far as I know.
The text was updated successfully, but these errors were encountered: