linear_get_issue_relations
Retrieve relationship information for a Linear issue, including blockers, dependencies, and related items, to understand issue connections and dependencies.
Instructions
Get relationships for an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | Issue ID to get relationships for | |
type | No | Filter by relationship type |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "Issue ID to get relationships for",
"type": "string"
},
"type": {
"description": "Filter by relationship type",
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}