-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
174 lines (151 loc) · 3.24 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
type Device {
address: String
icon: String
id: ID!
location: Location
metrics: [Metric]!
slots: [[NetworkSlot]]
}
type Lease {
id: ID!
"ISO-8601"
revokedDate: DateTime
token: String
userID: String
}
type Location {
x: Float!
y: Float!
}
type Metric {
enabled: Boolean
id: ID!
records(type: RecordFetchType!): [Record]!
settings: [Property]
type: String
}
"Mutation root"
type Mutation {
createLease(satelliteID: String!): Lease
deleteDevice(id: String!, stackID: String!): Boolean!
deleteMetric(deviceID: String!, id: String!): Boolean!
deleteSatellite(id: String!, stackID: String!): Boolean!
deleteStack(id: String!): Boolean!
migrateUser(id: String!): String!
revokeLease(id: String!, satelliteID: String!): Lease
upsertDevice(device: GQLDeviceInput!, stackID: String!): Device
upsertMetric(deviceID: String!, metric: GQLMetricInput!): Metric
upsertSatellite(satellite: GQLSatelliteInput!, stackID: String!): Satellite
upsertStack(stack: GQLStackInput!): Stack
}
type NetworkSlot {
id: ID!
state: SlotState
targetSlotID: String
}
type Property {
key: String!
value: String
}
"Query root"
type Query {
device(id: String!, stackID: String!): Device
devices(stack: GQLStackInput!): [Device]!
lease(id: String!, satelliteID: String!): Lease
leases(satellite: GQLSatelliteInput!): [Lease]!
metric(deviceID: String!, id: String!): Metric
metrics(device: GQLDeviceInput!): [Metric]!
records(metric: GQLMetricInput, type: RecordFetchType!): [Record]!
satellite(id: String!, stackID: String!): Satellite
satellites(stack: GQLStackInput!): [Satellite]!
shutdown: Boolean!
stack(id: String!): Stack
stacks: [Stack]!
}
type Record {
id: ID!
"ISO-8601"
recordTime: DateTime
result: [Property]
state: RecordState
}
type Satellite {
displayName: String
id: ID!
leases: [Lease]!
}
type Stack {
devices: [Device]!
displayName: String
id: ID!
satellites: [Satellite]!
}
enum RecordFetchType {
LATEST
}
enum RecordState {
FAILURE
SUCCESS
UNKNOWN
WARNING
}
enum SlotState {
DISABLED
OFFLINE
ONLINE
}
"Scalar for DateTime"
scalar DateTime
input GQLDeviceInput {
address: String
icon: String
id: ID!
location: GQLLocationInput
metrics: [GQLMetricInput]
slots: [[GQLNetworkSlotInput]]
}
input GQLLocationInput {
x: Float!
y: Float!
}
input GQLMetricInput {
enabled: Boolean
id: ID!
records: [GQLMetricRecordInput]
settings: [GQLPropertyInput]
type: String
}
input GQLMetricRecordInput {
id: ID!
"ISO-8601"
recordTime: DateTime
result: [GQLPropertyInput]
state: RecordState
}
input GQLNetworkSlotInput {
id: ID!
state: SlotState
targetSlotID: String
}
input GQLPropertyInput {
key: String!
value: String
}
input GQLSatelliteInput {
displayName: String
id: ID!
leases: [GQLSatelliteLeaseInput]
}
input GQLSatelliteLeaseInput {
id: ID!
"ISO-8601"
revokedDate: DateTime
token: String
userID: String
}
input GQLStackInput {
devices: [GQLDeviceInput]
displayName: String
id: ID!
satellites: [GQLSatelliteInput]
}