list_issue_links
Retrieve all linked issues for a specific GitLab issue to track relationships and dependencies between tasks.
Instructions
List all issue links for a specific issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of a project's issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "The internal ID of a project's issue",
"type": "number"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
}
},
"required": [
"project_id",
"issue_iid"
],
"type": "object"
}