Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item.query.graphql « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 549e4f8c65ae4377613ac50e2b8029ff42086977 (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 TitleWidget {
          contentText
        }
      }
    }
  }
}