list_issues
Retrieve and filter GitLab project issues by assignee, author, labels, milestones, and more using customizable search parameters to streamline issue tracking and management.
Instructions
Get issues for a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee_id | No | ||
| author_id | No | ||
| created_after | No | ||
| created_before | No | ||
| iid | No | ||
| labels | No | ||
| milestone | No | ||
| order_by | No | ||
| page | No | ||
| per_page | No | ||
| project_id | No | ||
| scope | No | ||
| search | No | ||
| sort | No | ||
| state | No | ||
| updated_after | No | ||
| updated_before | No |
Input Schema (JSON Schema)
{
"properties": {
"assignee_id": {
"type": "number"
},
"author_id": {
"type": "number"
},
"created_after": {
"type": "string"
},
"created_before": {
"type": "string"
},
"iid": {
"type": [
"number",
"string"
]
},
"labels": {
"type": "string"
},
"milestone": {
"type": "string"
},
"order_by": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"project_id": {
"type": "string"
},
"scope": {
"enum": [
"created_by_me",
"assigned_to_me",
"all"
],
"type": "string"
},
"search": {
"type": "string"
},
"sort": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"state": {
"enum": [
"opened",
"closed",
"all"
],
"type": "string"
},
"updated_after": {
"type": "string"
},
"updated_before": {
"type": "string"
}
},
"type": "object"
}