gitlab-org--gitlab-foss/app/assets/javascripts/work_items/graphql/work_item_links.query.graphql

37 lines
578 B
GraphQL

query workItemLinksQuery($id: WorkItemID!) {
workItem(id: $id) {
id
workItemType {
id
}
title
userPermissions {
deleteWorkItem
updateWorkItem
}
confidential
widgets {
type
... on WorkItemWidgetHierarchy {
type
parent {
id
}
children {
nodes {
id
confidential
workItemType {
id
}
title
state
createdAt
closedAt
}
}
}
}
}
}