get_issues {projmgr} | R Documentation |
Get issues from GitHub repository
Description
A single issue can be obtained by identification number of number
is passed through ...
s.
In this case, all other query parameters will be ignored.
Usage
get_issues(ref, limit = 1000, ...)
Arguments
ref |
Repository reference (list) created by |
limit |
Number of records to return, passed directly to |
... |
Additional user-defined query parameters. Use |
Value
Content of GET request as list
See Also
Other issues:
get_issue_comments()
,
get_issue_events()
,
parse_issue_comments()
,
parse_issue_events()
,
parse_issues()
,
post_issue_update()
,
post_issue()
,
report_discussion()
,
report_progress()
,
viz_waterfall()
Examples
## Not run:
myrepo <- create_repo_ref('emilyriederer', 'myrepo')
issues_res <- get_issues(myrepo)
issues <- parse_issues(issues_res)
## End(Not run)
[Package projmgr version 0.1.1 Index]