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

get_item.query.graphql « graphql « editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c8bc09f7b037a3ea90cd71c9d0b560e023bd9d8 (plain)
1
2
3
4
5
6
7
8
9
query ToolbarItem($id: String!) {
  item(id: $id) @client {
    id
    label
    icon
    selected
    group
  }
}