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: 3b46fed97ec20d801f56bd0c69edf21e53f2415b (plain)
1
2
3
4
5
6
7
#import "./work_item.fragment.graphql"

query workItem($id: WorkItemID!) {
  workItem(id: $id) {
    ...WorkItem
  }
}