-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.ts
More file actions
249 lines (213 loc) · 3.74 KB
/
project.ts
File metadata and controls
249 lines (213 loc) · 3.74 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
237
238
239
240
241
242
243
244
245
246
247
248
249
import { gql } from 'apollo-server-express';
export default gql`
"""
Possible events order
"""
enum EventsSortOrder {
BY_DATE
BY_COUNT
BY_AFFECTED_USERS
}
"""
Events filters input type
"""
input EventsFiltersInput {
"""
If True, includes events with resolved mark to the output
"""
resolved: Boolean
"""
If True, includes events with starred mark to the output
"""
starred: Boolean
"""
If True, includes events with ignored mark to the output
"""
ignored: Boolean
}
"""
Respose object with updated project and his id
"""
type UpdateProjectResponse {
"""
Project id
"""
recordId: ID!
"""
Modified project
"""
record: Project!
}
"""
Project representation
"""
type Project {
"""
Project ID
"""
id: ID! @renameFrom(name: "_id")
"""
Project token
"""
token: String!
"""
Project name
"""
name: String!
"""
Project description
"""
description: String
"""
Date of creating project
"""
creationDate: DateTime!
"""
Project domain
"""
domain: String
"""
Project URI
"""
uri: String
"""
Project image
"""
image: String
"""
User who created project
"""
uidAdded: User!
"""
Project's Event
"""
event(id: ID!): Event
"""
Project events
"""
events(
"Maximum number of results"
limit: Int = 50
"Certain number of documents to skip"
skip: Int = 0
): [Event!]
"""
Returns recent events grouped by day
"""
recentEvents(
"Maximum number of results"
limit: Int! = 50
"Certain number of documents to skip"
skip: Int! = 0
"Events sort order"
sort: EventsSortOrder = lastRepetitionTime
"Event marks by which events should be sorted"
filters: EventsFiltersInput
"Search query"
search: String
): RecentEvents
"""
Return events that occurred after a certain timestamp
"""
chartData(
"""
How many days we need to fetch for displaying in a chart
"""
days: Int! = 0
"""
User's local timezone offset in minutes
"""
timezoneOffset: Int! = 0
): [ChartDataItem]
"""
Returns number of unread events
"""
unreadCount: Int!
"""
Project notification settings
"""
notifications: [ProjectNotificationsRule]
"""
Event grouping patterns
"""
eventGroupingPatterns: [ProjectEventGroupingPattern]
}
extend type Query {
"""
Returns project info
"""
project("Project id" projectId: ID!): Project @requireUserInWorkspace
}
extend type Mutation {
"""
Create project in given workspace
"""
createProject(
"""
Workspace ID
"""
workspaceId: ID!
"""
Project name
"""
name: String! @validate(notEmpty: true)
"""
Project image
"""
image: Upload @uploadImage
): Project! @requireAdmin
"""
Update project settings
"""
updateProject(
"""
What project to update
"""
id: ID!
"""
Project name
"""
name: String! @validate(notEmpty: true)
"""
Project description
"""
description: String
"""
Project image
"""
image: Upload @uploadImage
): Project! @requireAdmin
"""
Generates new project integration token by id
"""
generateNewIntegrationToken(
"""
What project to regenerate integration token
"""
id: ID!
): UpdateProjectResponse! @requireAdmin
"""
Remove project
"""
removeProject(
"What project to remove"
projectId: ID!
): Boolean! @requireAdmin
"""
Updates user's visit time on project
"""
updateLastProjectVisit(
"""
project ID
"""
projectId: ID!
): DateTime! @requireUserInWorkspace
}
input EventsFilter {
"""
Search query string. Only alphanumeric characters, spaces, and some special characters are allowed.
Max length: 100 characters
"""
search: String
}
`;