-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
236 lines (210 loc) · 4.99 KB
/
schema.graphql
File metadata and controls
236 lines (210 loc) · 4.99 KB
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
type Query {
tasks(
id: [ID!]
directionId: [ID]
offset: Int
limit: Int
completed: Boolean
deleted: Boolean
lastCompletedAt: String
lastDeletedAt: String
): [Task!]
ideas(
id: [ID!]
directionId: [ID]
offset: Int
limit: Int
deleted: Boolean
lastDeletedAt: String
): [Idea!]
users(
id: [ID!]
email: [String!]
login: [String!]
offset: Int
limit: Int
): [User!]
directions(
id: [ID!]
offset: Int
limit: Int
deleted: Boolean
lastDeletedAt: String
): [Direction!]
}
type Mutation {
taskAdd(
description: String!
details: String
assigneeId: ID
directionId: ID
startAt: String!
): Task
ideaAdd(
description: String!
details: String
directionId: ID
generation: Generation!
): Idea
directionAdd(name: String!, details: String): Direction
tasksGenerate(
description: String!
details: String
assigneeId: ID
directionId: ID
startAt: String!
repeatMode: RepeatMode!
repeatEvery: Int!
weekDays: [WeekDay!]
repeatUntil: String!
): [ID!]
taskAddComment(taskId: ID!, text: String!): Comment
ideaAddComment(ideaId: ID!, text: String!): Comment
taskSetDescription(taskId: ID!, groupId: ID, description: String!): [ID!]
taskSetDetails(taskId: ID!, groupId: ID, details: String): [ID!]
taskSetDirection(taskId: ID!, groupId: ID, directionId: ID): [ID!]
taskSetDeletedAt(taskId: ID!, groupId: ID, deletedAt: String, all: Boolean): [ID!]
taskSetAssignee(taskId: ID!, groupId: ID, assigneeId: ID): [ID!]
taskSetStartAt(taskId: ID!, groupId: ID, startAt: String!): [ID!]
taskSetCompletedAt(taskId: ID!, completedAt: String): ID
taskSetRepeatUntil(taskId: ID!, groupId: ID!, repeatUntil: String!): [ID!]
taskSetRepeatMode(
taskId: ID!
groupId: ID
repeatMode: RepeatMode
repeatEvery: Int
weekDays: [WeekDay!]
startAt: String
repeatUntil: String
): [ID!]
ideaSetDescription(ideaId: ID!, description: String!): ID
ideaSetDetails(entityId: ID!, details: String): ID
ideaSetDirection(ideaId: ID!, directionId: ID): ID
ideaSetDeletedAt(ideaId: ID!, deletedAt: String): ID
ideaSetGeneration(ideaId: ID!, generation: Generation!): ID
ideaSetReviewedAt(ideaId: ID!, reviewedAt: String): ID
commentSetText(commentId: ID!, text: String!): ID
commentSetDeletedAt(commentId: ID!, deletedAt: String): ID
directionSetName(directionId: ID!, name: String!): ID
directionSetDetails(directionId: ID!, details: String): ID
directionAddMember(directionId: ID!, userId: ID!): ID
directionRemoveMember(directionId: ID!, userId: ID!): ID
directionSetDeletedAt(directionId: ID!, deletedAt: String): ID
userSetNotificationReadTime(notificationReadTime: String!): ID
userSetLogin(login: String!): ID
userSetDisplayName(displayName: String!): ID
userSetEmail(email: String!): ID
userSetPassword(oldPassword: String!, newPassword: String!): ID
taskSubscribe(taskId: ID!): ID
ideaSubscribe(ideaId: ID!): ID
taskUnsubscribe(taskId: ID!): ID
ideaUnsubscribe(ideaId: ID!): ID
}
enum RepeatMode {
DAY
WEEK
MONTH
YEAR
}
enum WeekDay {
MONDAY
TUESDAY
WEDNESDAY
THURSDAY
FRIDAY
SATURDAY
SUNDAY
}
type Task {
id: ID!
description: String
details: String
createdBy: User
assignee: User
startAt: String
completedAt: String
direction: Direction
createdAt: String
deletedAt: String
repeatMode: RepeatMode
weekDays: [WeekDay!]
repeatEvery: Int
repeatUntil: String
groupId: ID
comments(offset: Int, limit: Int): [Comment!]
subscribers(offset: Int, limit: Int): [User!]
notifications(start: String, end: String): [Notification!]
}
enum Generation {
HOT
LATER
TOO_GOOD_TO_DELETE
}
type Idea {
id: ID!
description: String
details: String
generation: Generation
createdBy: User
direction: Direction
createdAt: String
deletedAt: String
reviewedAt: String
comments(offset: Int, limit: Int): [Comment!]
subscribers(offset: Int, limit: Int): [User!]
notifications(start: String, end: String): [Notification!]
}
type User {
id: ID!
login: String
password: String
displayName: String
email: String
notificationReadTime: String
}
type Comment {
id: ID!
createdBy: User
createdAt: String
deletedAt: String
text: String
}
type Direction {
id: ID!
name: String
details: String
createdBy: User
createdAt: String
deletedAt: String
members(offset: Int, limit: Int): [User!]
notifications(start: String, end: String): [Notification!]
}
enum ActionType {
"""
Task/Idea/User/Comment added to the direction/task/idea
"""
ITEM_ADDED
"""
Task/Idea/User deleted from the direction
"""
ITEM_DELETED
"""
Task assigned to the user
"""
TASK_ASSIGNED
"""
Task/Idea/Direction updated
"""
ITEM_UPDATED
}
union ActionItem = User | Task | Idea | Comment
type Notification {
id: ID!
modifiedAt: String
actor: User
actionType: ActionType
field: String
oldValue: String
newValue: String
actionItem: ActionItem
}