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

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