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: 276061af1932ec40884717005e7a6296a01ee4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/graphql_shared/fragments/label.fragment.graphql"
#import "./work_item.fragment.graphql"

query workItem($id: WorkItemID!) {
  workItem(id: $id) {
    ...WorkItem
    mockWidgets @client {
      ... on LocalWorkItemLabels {
        type
        allowScopedLabels
        nodes {
          ...Label
        }
      }
    }
  }
}