-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
153 lines (136 loc) · 2.71 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
"""
Represent RGB color
"""
type Color {
red: Int!
green: Int!
blue: Int!
}
"""
Represent RGB color
"""
input ColorInput {
red: Int!
green: Int!
blue: Int!
}
"""
Represents single hardware MysticLight Device
"""
type Device {
name: String!
"""
returns device's leds
"""
leds(filter: DeviceLedFilter! = {names: null}): [DeviceLed!]!
}
"""
used for filtering devices.
Currently, supports only filtering by name
"""
input DeviceFilter {
names: [String!]
}
"""
Represents single led of the device
"""
type DeviceLed {
name: String!
supportedStyles: [String!]!
maxBright: Int!
maxSpeed: Int!
state: DeviceLedState!
}
"""
used for filtering device's leds.
Currently, supports only filtering by name
"""
input DeviceLedFilter {
names: [String!]
}
"""
Mutation wrapper for a device led
"""
type DeviceLedMutation {
"""
updates state for the device led
"""
setState(state: DeviceLedStateInput!): Boolean!
}
"""
Represents state of the single led
"""
type DeviceLedState {
"""
current style of the led
"""
style: String!
"""
current color of the led (some of the styles do not support this, so there will be fake data in this case)
"""
color: Color!
"""
current brightness of the led (some of the styles do not support this, so there will be fake data in this case)
"""
bright: Int!
"""
current speed of the led (some of the styles do not support this, so there will be fake data in this case)
"""
speed: Int!
}
"""
Represents state of the single led, but with optional fields
"""
input DeviceLedStateInput {
"""
current style of the led
"""
style: String
"""
current color of the led (some of the styles do not support this, so there will be fake data in this case)
"""
color: ColorInput
"""
current brightness of the led (some of the styles do not support this, so there will be fake data in this case)
"""
bright: Int
"""
current speed of the led (some of the styles do not support this, so there will be fake data in this case)
"""
speed: Int
}
"""
Mutation wrapper for a device
"""
type DeviceMutation {
"""
returns device's leds wrapped in mutation wrapper
"""
leds(filter: DeviceLedFilter! = {names: null}): [DeviceLedMutation!]!
}
"""
Graphql mutation for MysticLightSDK
"""
type MysticLightGraphqlMutation {
"""
returns Mystic Light devices wrapped in mutation wrapper
"""
devices(filter: DeviceFilter! = {names: null}): [DeviceMutation!]!
"""
Full reload of Mystic Light SDK to get most-fresh hardware data
"""
reload: Boolean!
}
"""
Graphql query for MysticLightSDK
"""
type MysticLightGraphqlQuery {
"""
returns Mystic Light devices
"""
devices(filter: DeviceFilter! = {names: null}): [Device!]!
}
schema {
query: MysticLightGraphqlQuery
mutation: MysticLightGraphqlMutation
}