Module gitlab_api::issues::project [] [src]

List project issues

https://docs.gitlab.com/ce/api/issues.html#list-project-issues

List project issues

Get a list of a project's issues.

GET /projects/ID/issues
GET /projects/ID/issues?state=opened
GET /projects/ID/issues?state=closed
GET /projects/ID/issues?labels=foo
GET /projects/ID/issues?labels=foo,bar
GET /projects/ID/issues?labels=foo,bar&state=opened
GET /projects/ID/issues?milestone=1.0.0
GET /projects/ID/issues?milestone=1.0.0&state=opened
GET /projects/ID/issues?iid=42
Attribute Type Required Description
id integer yes The ID of a project
iid integer no Return the issue having the given iid
state string no Return all issues or just those that are opened or closed
labels string no Comma-separated list of label names, issues with any of the labels will be returned
milestone string no The milestone title
order_by string no Return requests ordered by created_at or updated_at fields. Default is created_at
sort string no Return requests sorted in asc or desc order. Default is desc

Structs

IssuesLister