summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/work_item_tree.query.graphql
blob: b4fb83b24c2c56879dcbde670018e8fa2e3e739f (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
41
42
43
44
45
46
47
48
49
50
51
52
53
#import "~/graphql_shared/fragments/label.fragment.graphql"
#import "~/graphql_shared/fragments/user.fragment.graphql"
#import "ee_else_ce/work_items/graphql/work_item_metadata_widgets.fragment.graphql"

query workItemTreeQuery($id: WorkItemID!) {
  workItem(id: $id) {
    id
    workItemType {
      id
      name
      iconName
    }
    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
            widgets {
              ... on WorkItemWidgetHierarchy {
                type
                hasChildren
              }
              ...WorkItemMetadataWidgets
            }
          }
        }
      }
      ...WorkItemMetadataWidgets
    }
  }
}