summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/work_item.query.graphql
blob: 9f173f7c3028b11463643601e6590ffb57c4770e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import './widget.fragment.graphql'

query WorkItem($id: ID!) {
  workItem(id: $id) @client {
    id
    type
    widgets {
      nodes {
        ...WidgetBase
        ... on LocalTitleWidget {
          contentText
        }
      }
    }
  }
}