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

work_item_by_iid.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: 4c3be007d96643ba6191689e89981d1a66777bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import "./work_item.fragment.graphql"

query workItemByIid($fullPath: ID!, $iid: String) {
  workspace: project(fullPath: $fullPath) {
    id
    workItems(iid: $iid) {
      nodes {
        ...WorkItem
      }
    }
  }
}