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

typedefs.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: 2433ebf6c663f7187c623385eeffa65abd638f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
type Item {
  id: ID!
  label: String!
  icon: String
  selected: Boolean
  group: Int!
  category: String
  selectedLabel: String
}

type Items {
  nodes: [Item]!
}

extend type Query {
  items: Items
}

extend type Mutation {
  updateToolbarItem(id: ID!, propsToUpdate: Item!): LocalErrors
  removeToolbarItems(ids: [ID!]): LocalErrors
  addToolbarItems(items: [Item]): LocalErrors
}