capability_id: issue.relations.blocked_by.remove
version: "1.0.0"
description: Remove a blocked-by relation for an issue.
input_schema:
  type: object
  required: [issueId, blockedByIssueId]
  properties:
    issueId: { type: string, minLength: 1 }
    blockedByIssueId: { type: string, minLength: 1 }
  additionalProperties: false
output_schema:
  type: object
  required: [issueId, blockedByIssueId, removed]
  properties:
    issueId: { type: string, minLength: 1 }
    blockedByIssueId: { type: string, minLength: 1 }
    removed: { type: boolean }
  additionalProperties: false
routing:
  preferred: graphql
  fallbacks: []
graphql:
  operationName: IssueBlockedByRemove
  operationType: mutation
  documentPath: src/gql/operations/issue-blocked-by-remove.graphql
