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

work_item.fragment.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: e25fd102699b7632a96adbd01ec726bf144ac141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fragment WorkItem on WorkItem {
  id
  title
  state
  description
  workItemType {
    id
    name
  }
  userPermissions {
    deleteWorkItem
    updateWorkItem
  }
}