GET
github_issues_list_for_authenticated_user.py
from charter.packs import github
result = await github.issues_list_for_authenticated_user.ainvoke({})
Requires
repo, read:user. Pages by number: page with per_page.Query parameters
| Field | Type | Description |
|---|---|---|
perPage | integer | The number of results per page (max 100). Defaults to 30. ≥ 1; ≤ 100; defaults to 30 |
page | integer | The page number of the results to fetch. Defaults to 1. ≥ 1; defaults to 1 |
filter | IssueFilter | Which sorts of issues to return. assigned means issues assigned to you. created means issues created by you. mentioned means issues mentioning you. subscribed means issues you’re subscribed to updates for. all or repos means all issues you can see, regardless of participation or creation. GitHub uses assigned when this is absent. |
state | IssueState | Indicates the state of the issues to return. GitHub uses open when this is absent. |
labels | string | A list of comma separated label names. Example: bug,ui,@high. |
sort | IssueSort | What to sort results by. GitHub uses created when this is absent. |
direction | SortDirection | The direction to sort the results by. GitHub uses desc when this is absent. |
since | string | Only show results that were last updated after the given time, in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. format date-time |
collab | boolean | Include issues from repositories you are a collaborator on. |
orgs | boolean | Include issues from your organizations’ repositories. |
owned | boolean | Include issues from repositories you own. |
pulls | boolean | Include pull requests alongside issues. |