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: b32cb4f28fb3a2a9e63ffd5766fdc931f5d4d025 (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) {
    id
    title
    workItemType {
      id
    }
    widgets @client {
      nodes {
        ...WidgetBase
      }
    }
  }
}