summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/editor/graphql/typedefs.graphql
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
}