summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/work_item_links.query.graphql
blob: 7d7bb9c7fc533ab77d2730f11414a285d527f83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
query workItemLinksQuery($id: WorkItemID!) {
  workItem(id: $id) {
    id
    workItemType {
      id
      name
    }
    title
    userPermissions {
      deleteWorkItem
      updateWorkItem
    }
    confidential
    widgets {
      type
      ... on WorkItemWidgetHierarchy {
        type
        parent {
          id
        }
        children {
          nodes {
            id
            iid
            confidential
            workItemType {
              id
              name
              iconName
            }
            title
            state
            createdAt
            closedAt
          }
        }
      }
    }
  }
}