Linear

by tacticlaunch
Verified

linear_createIssueRelation

Establish connections between issues in Linear by linking them with relations like 'blocks', 'blocked_by', 'related', 'duplicate', or 'duplicate_of'. Define issue IDs and relation type to structure dependencies and improve project clarity.

Instructions

Create relations between issues (blocks, is blocked by, etc.)

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the first issue (e.g., ABC-123)
relatedIssueIdYesID or identifier of the second issue (e.g., ABC-456)
typeYesType 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" }
ID: r0jy9qy35n