linear_createIssueRelation
Define issue relationships in Linear, such as blocking, dependency, or duplication, by linking two specified issues with a chosen relation type.
Instructions
Create relations between issues (blocks, is blocked by, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the first issue (e.g., ABC-123) | |
relatedIssueId | Yes | ID or identifier of the second issue (e.g., ABC-456) | |
type | Yes | Type of relation: 'blocks', 'blocked_by', 'related', 'duplicate', 'duplicate_of' |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the first issue (e.g., ABC-123)",
"type": "string"
},
"relatedIssueId": {
"description": "ID or identifier of the second issue (e.g., ABC-456)",
"type": "string"
},
"type": {
"description": "Type of relation: 'blocks', 'blocked_by', 'related', 'duplicate', 'duplicate_of'",
"enum": [
"blocks",
"blocked_by",
"related",
"duplicate",
"duplicate_of"
],
"type": "string"
}
},
"required": [
"issueId",
"relatedIssueId",
"type"
],
"type": "object"
}