-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema.graphql
317 lines (280 loc) · 5.91 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# This file was generated based on "schema.json". Do not edit manually.
schema {
query: RootQueryType
subscription: RootSubscriptionType
}
"A single tab or panel of Helios"
interface Widget {
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
}
type Announcement {
announcementId: String!
company: String!
id: ID!
locationId: String!
message: String!
people: String!
publishOn: DateTime!
}
type AuthorContribution {
count: Int
sourceAuthor: String
}
type Event {
externalId: String!
id: ID!
insertedAt: DateTime!
source: EventSource!
sourceAuthor: String!
}
type EventCollection {
all: [Event]!
byAuthor(top: Int): [AuthorContribution]
count: EventCount!
}
type EventCount {
githubCommit: Int
githubPull: Int
slackMessage: Int
}
type EventsWidget implements Widget {
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
}
type GuestsWidget implements Widget {
"MojoTech announcements today"
dayAnnouncements: [Announcement]!
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
}
type Interaction {
favoriteCount: Int!
retweetCount: Int!
}
type Location {
bathroomCode: String
cityName: String!
dayAnnouncements: [Announcement]!
id: ID!
isPrimary: Boolean!
latitude: Float!
longitude: Float!
moonPhase: Float!
solarCycles: [Solarcycle]!
timeZone: String!
trafficCams: [TrafficCam]!
weather: Weather!
widgets: WidgetCollection!
wifiName: String
wifiPassword: String
}
type Media {
images: [TwitterImage]
link: String
}
type NumbersWidget implements Widget {
durationSeconds: Int!
"MojoTech slack/github events"
events(createdAfter: String, type: EventSource): EventCollection
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
}
type RootQueryType {
"MojoTech slack/github events"
events(createdAfter: String, type: EventSource): EventCollection
location(cityName: String): Location
tweets: [Tweet]
}
type RootSubscriptionType {
"An announcement was published"
announcementPublished: Announcement!
"Updated SHA value"
deploymentSha: String!
"An event was published to the API"
eventPublished: Event!
}
type Solarcycle {
time: String!
type: String!
}
type TrafficCam {
feedFormat: String!
id: ID!
title: String!
url: String!
}
type TrafficWidget implements Widget {
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
trafficCams: [TrafficCam]!
}
type Tweet {
insertedAt: DateTime!
interactions: Interaction!
media: Media
status: String!
text: String!
user: User!
}
type TwitterImage {
id: Int!
mediaUrl: String!
}
type TwitterWidget implements Widget {
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
"Tweets from MojoTech"
tweets: [Tweet]!
}
type User {
avatar: String!
handle: String!
name: String!
}
type Weather {
current: WeatherCurrentlyDetail!
daily: [WeatherDailyData]!
hourly: [WeatherHourlyData]!
lat: Float!
lon: Float!
minutely: [WeatherMinutelyData]!
offset: Int!
timeZone: String!
}
type WeatherApparentTemperatureData {
day: Float!
eve: Float!
morn: Float!
night: Float!
}
type WeatherCurrentlyDetail {
clouds: Float!
dewPoint: Float!
feelsLike: Float!
humidity: Int!
nearestStormBearing: Int!
nearestStormDistance: Int!
pressure: Int!
temp: Float!
time: UnixDateTime!
uvi: Float!
visibility: Int!
weather: WeatherInfoData!
windDeg: Int!
windGust: Float
windSpeed: Float!
}
type WeatherDailyData {
clouds: Int!
dewPoint: Int!
feelsLike: WeatherApparentTemperatureData!
humidity: Int!
precipProbability: Float!
pressure: Int!
rain: Float
sunrise: UnixDateTime!
sunset: UnixDateTime!
temp: WeatherTemperatureData!
time: UnixDateTime!
uvi: Float!
weather: WeatherInfoData!
windDeg: Int!
windSpeed: Float!
}
type WeatherHourlyData {
clouds: Int!
dewPoint: Float!
feelsLike: Float!
humidity: Int!
precipProbability: Float!
pressure: Int!
temp: Float!
time: UnixDateTime!
uvi: Float!
visibility: Int!
weather: WeatherInfoData!
windDeg: Int!
windGust: Float
windSpeed: Float!
}
type WeatherInfoData {
description: String!
icon: IconIdToName!
id: Int!
main: String!
}
type WeatherMinutelyData {
precipitation: Float!
time: UnixDateTime!
}
type WeatherTemperatureData {
day: Float!
eve: Float!
max: Float!
min: Float!
morn: Float!
night: Float!
}
type WeatherWidget implements Widget {
durationSeconds: Int!
id: Int!
locationId: String!
name: String!
position: Int!
showWeather: Boolean
sidebarText: String
"Weather response from Dark Sky"
weather: Weather!
}
type WidgetCollection {
byIdOrFirst(id: Int): Widget!
enabled: [Widget]!
next(currentWidgetId: Int): Widget!
}
enum EventSource {
"Github commit"
githubCommit
"Github pull request"
githubPull
"Slack message"
slackMessage
}
"""
The `DateTime` scalar type represents a date and time in the UTC
timezone. The DateTime appears in a JSON response as an ISO8601 formatted
string, including UTC timezone ("Z"). The parsed date and time string will
be converted to UTC if there is an offset.
"""
scalar DateTime
scalar IconIdToName
scalar UnixDateTime