capability_id: issue.relations.parent.set
version: "1.0.0"
description: Set an issue parent relation.
input_schema:
  type: object
  required: [issueId, parentIssueId]
  properties:
    issueId: { type: string, minLength: 1 }
    parentIssueId: { type: string, minLength: 1 }
  additionalProperties: false
output_schema:
  type: object
  required: [issueId, parentIssueId, updated]
  properties:
    issueId: { type: string, minLength: 1 }
    parentIssueId: { type: string, minLength: 1 }
    updated: { type: boolean }
  additionalProperties: false
routing:
  preferred: graphql
  fallbacks: []
graphql:
  operationName: IssueParentSet
  operationType: mutation
  documentPath: src/gql/operations/issue-parent-set.graphql
