list_issue_discussions
Retrieve all discussions and comments for a specific issue in a GitLab project to track conversation history and collaborative problem-solving.
Instructions
List discussions for an issue in a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of the project issue | |
| page | No | Page number for pagination (default: 1) | |
| per_page | No | Number of items per page (max: 100, default: 20) |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "The internal ID of the project issue",
"type": "number"
},
"page": {
"description": "Page number for pagination (default: 1)",
"type": "number"
},
"per_page": {
"description": "Number of items per page (max: 100, default: 20)",
"type": "number"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid"
],
"type": "object"
}