-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
schema.graphql
293 lines (244 loc) · 6.92 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
enum Role {
ADMIN
USER
}
directive @hasRole(role: Role!) on FIELD_DEFINITION
schema {
query: RootQuery
mutation: RootMutation
}
type RootMutation {
createTag(key: String!, color: String!): TagDefinition @hasRole(role: USER)
updateTag(key: String!, newKey: String, color: String!): TagDefinition @hasRole(role: USER)
removeTag(key: String!): TagDefinition @hasRole(role: USER)
createUser(name: String!, pass: String!, admin: Boolean!): User @hasRole(role: ADMIN)
removeUser(id: Int!): User @hasRole(role: ADMIN)
updateUser(id: Int!, name: String!, pass: String, admin: Boolean!): User @hasRole(role: ADMIN)
login(username: String!, pass: String!, deviceName: String!, type: DeviceType!, cookie: Boolean!): Login
createDevice(name: String!, type: DeviceType!): Login @hasRole(role: USER)
updateDevice(id: Int!, name: String!, type: DeviceType!): Device
removeDevice(id: Int!): Device @hasRole(role: USER)
removeCurrentDevice: Device! @hasRole(role: USER)
createTimeSpan(start: Time!, end: Time, tags: [InputTimeSpanTag!], note: String!): TimeSpan @hasRole(role: USER)
updateTimeSpan(id: Int!, start: Time!, end: Time, tags: [InputTimeSpanTag!], oldStart: Time, note: String!): TimeSpan @hasRole(role: USER)
removeTimeSpan(id: Int!): TimeSpan @hasRole(role: USER)
replaceTimeSpanTags(from: InputTimeSpanTag!, to: InputTimeSpanTag!, opt: InputReplaceOptions!): Boolean @hasRole(role: USER)
copyTimeSpan(id: Int!, start: Time!, end: Time): TimeSpan @hasRole(role: USER)
stopTimeSpan(id: Int!, end: Time!): TimeSpan @hasRole(role: USER)
createDashboard(name: String!): Dashboard! @hasRole(role: USER)
updateDashboard(id: Int!, name: String!): Dashboard! @hasRole(role: USER)
removeDashboard(id: Int!): Dashboard! @hasRole(role: USER)
addDashboardRange(dashboardId: Int!, range: InputNamedDateRange!): NamedDateRange
updateDashboardRange(rangeId: Int!, range: InputNamedDateRange!): NamedDateRange
removeDashboardRange(rangeId: Int!): NamedDateRange
addDashboardEntry(dashboardId: Int!, entryType: EntryType!, title: String!, total: Boolean!, stats: InputStatsSelection!, pos: InputResponsiveDashboardEntryPos): DashboardEntry @hasRole(role: USER)
updateDashboardEntry(entryId: Int!, entryType: EntryType, title: String, total: Boolean, stats: InputStatsSelection, pos: InputResponsiveDashboardEntryPos): DashboardEntry @hasRole(role: USER)
removeDashboardEntry(id: Int!): DashboardEntry! @hasRole(role: USER)
setUserSettings(settings: InputUserSettings!): UserSettings! @hasRole(role: USER)
}
type RootQuery {
suggestTag(query: String!): [TagDefinition!] @hasRole(role: USER)
suggestTagValue(key: String!, query: String!): [String!] @hasRole(role: USER)
tags: [TagDefinition!] @hasRole(role: USER)
users: [User!] @hasRole(role: ADMIN)
currentUser: User
currentDevice: Device
devices: [Device!] @hasRole(role: USER)
timeSpans(fromInclusive: Time, toInclusive: Time, cursor: InputCursor): PagedTimeSpans! @hasRole(role: USER)
timers: [TimeSpan!] @hasRole(role: USER)
stats(ranges: [Range!], tags: [String!], excludeTags: [InputTimeSpanTag!], requireTags: [InputTimeSpanTag!]): [RangedStatisticsEntries!] @hasRole(role: USER)
stats2(now: Time!, stats: InputStatsSelection!): [RangedStatisticsEntries!] @hasRole(role: USER)
version: Version!
dashboards: [Dashboard!] @hasRole(role: USER)
userSettings: UserSettings!
}
input InputUserSettings {
theme: Theme!
dateLocale: DateLocale!
firstDayOfTheWeek: WeekDay!
}
type UserSettings {
theme: Theme!
dateLocale: DateLocale!
firstDayOfTheWeek: WeekDay!
}
enum WeekDay {
Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
}
enum Theme {
GruvboxDark, GruvboxLight, MaterialDark, MaterialLight
}
enum DateLocale {
American, American24h, German, Australian, British
}
input InputReplaceOptions {
override: OverrideMode!
}
enum OverrideMode {
Override, Discard
}
input InputCursor {
offset: Int
startId: Int
pageSize: Int
}
type Cursor {
hasMore: Boolean!
offset: Int!
startId: Int!
pageSize: Int!
}
type Version {
name: String!
commit: String!
buildDate: String!
}
type Login {
token: String!
user: User!
device: Device!
}
type Device {
id: Int!
name: String!
type: DeviceType!
createdAt: Time!
activeAt: Time!
}
enum DeviceType {
LongExpiry, ShortExpiry, NoExpiry
}
scalar Time
type TagDefinition {
color: String!
key: String!
user: User!
usages: Int!
}
type User {
admin: Boolean!
id: Int!
name: String!
}
type TimeSpan {
id: Int!
start: Time!
end: Time
oldStart: Time
tags: [TimeSpanTag!]
# TODO not nullable ^
note: String!
}
type PagedTimeSpans {
timeSpans: [TimeSpan!]!
cursor: Cursor!
}
type TimeSpanTag {
key: String!
value: String!
}
input InputTimeSpanTag {
key: String!
value: String!
}
input StatInput {
key: String!
mustHave: [InputTimeSpanTag!]
mustNotHave: [InputTimeSpanTag!]
}
input Range {
start: Time!
end: Time!
}
type StatisticsEntry {
key: String!
value: String!
timeSpendInSeconds: Float!
}
type RangedStatisticsEntries {
start: Time!
end: Time!
entries: [StatisticsEntry!]
}
type Dashboard {
id: Int!
name: String!,
items: [DashboardEntry!]!
ranges: [NamedDateRange!]!
}
type NamedDateRange {
id: Int!
name: String!
editable: Boolean!
range: RelativeOrStaticRange!
}
input InputNamedDateRange {
name: String!
editable: Boolean!
range: InputRelativeOrStaticRange!
}
type StatsSelection {
interval: StatsInterval!
tags: [String!]
excludeTags: [TimeSpanTag!]
includeTags: [TimeSpanTag!]
rangeId: Int
range: RelativeOrStaticRange
}
input InputStatsSelection {
interval: StatsInterval!
tags: [String!]
excludeTags: [InputTimeSpanTag!]
includeTags: [InputTimeSpanTag!]
rangeId: Int
range: InputRelativeOrStaticRange
}
enum StatsInterval {
Hourly, Daily, Weekly, Monthly, Yearly, Single
}
type RelativeOrStaticRange {
from: String!
to: String!
}
input InputRelativeOrStaticRange {
from: String!
to: String!
}
type DashboardEntry {
id: Int!
title: String!
total: Boolean!
statsSelection: StatsSelection!
pos: ResponsiveDashboardEntryPos!
entryType: EntryType!
}
type ResponsiveDashboardEntryPos {
desktop: DashboardEntryPos!
mobile: DashboardEntryPos!
}
input InputResponsiveDashboardEntryPos {
desktop: InputDashboardEntryPos
mobile: InputDashboardEntryPos
}
input InputDashboardEntryPos {
w: Int!
h: Int!
x: Int!
y: Int!
}
type DashboardEntryPos {
w: Int!
h: Int!
x: Int!
y: Int!
minW: Int!
minH: Int!
}
enum DashboardSize {
Large,
Medium,
Small
}
enum EntryType {
PieChart, BarChart, StackedBarChart, LineChart, VerticalTable, HorizontalTable
}