-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.gql
More file actions
273 lines (211 loc) · 5.6 KB
/
Copy pathschema.gql
File metadata and controls
273 lines (211 loc) · 5.6 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type Entry {
key: String!
value: String!
}
type CreateFileUploadPayload {
"""Url to send form data into."""
url: String!
"""Fields to include in the form."""
fields: [Entry!]!
"""Upload token to use in another mutations for file assigment."""
uploadToken: String!
}
type User {
"""ID of the user."""
id: ID!
"""Timestamp of the user creation."""
createdAt: DateTime!
"""Email of the user."""
email: String!
"""Full name of the user."""
fullName: String!
"""Indicates whether user is an admin."""
isAdmin: Boolean!
"""Indicates whether user is already onboarded."""
isOnboarded: Boolean!
"""Organization assigned to the user."""
organization: Organization
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
type UserPagination {
"""The total number of results, regardless of page and perPage arguments."""
totalCount: Float!
"""List of nodes that matched the query."""
nodes: [User!]!
}
type Organization {
"""ID of the organization."""
id: ID!
"""Timestamp of the organization creation."""
createdAt: DateTime!
"""Name of the organization."""
name: String!
"""Users assigned to the organization."""
users(
"""Page number (default: 1)."""
page: Int = 1
"""Number of nodes to list per page (default: 10, max 100)."""
perPage: Int = 10
sort: UserSort = {field: CREATED_AT, direction: ASC}
"""Filter by fullName containing phrase"""
fullName: String
): UserPagination!
}
input UserSort {
"""The field to sort results by."""
field: UserSortField!
"""The sort direction."""
direction: SortDirection!
}
enum UserSortField {
CREATED_AT
FULL_NAME
}
enum SortDirection {
ASC
DESC
}
type OrganizationPagination {
"""The total number of results, regardless of page and perPage arguments."""
totalCount: Float!
"""List of nodes that matched the query."""
nodes: [Organization!]!
}
type CreateOrganizationPayload {
organization: Organization!
}
type DeleteOrganizationPayload {
"""Indicates whether organization was deleted successfully."""
success: Boolean!
}
type UpdateOrganizationPayload {
organization: Organization!
}
type ChangePasswordPayload {
"""Indicates whether password was changed successfully."""
success: Boolean!
}
type LoginPayload {
"""
Token that should be passed with following requests to authenticate user.
"""
token: String!
"""Logged user."""
user: User!
}
type ResetPasswordPayload {
"""Indicates whether password reset flow has started."""
success: Boolean!
}
type SetNewPasswordPayload {
"""
Token that should be passed with following requests to authenticate user.
"""
token: String!
"""Logged user."""
user: User!
}
type Query {
"""Get info about authenticated user."""
authUser: User!
"""Find single user."""
user(
"""ID of a user."""
id: ID!
): User!
"""Find users list."""
users(
"""Page number (default: 1)."""
page: Int = 1
"""Number of nodes to list per page (default: 10, max 100)."""
perPage: Int = 10
sort: UserSort = {field: CREATED_AT, direction: ASC}
"""Filter by fullName containing phrase"""
fullName: String
"""Filter by assigned organization"""
organizationId: ID
): UserPagination!
"""Find single organization."""
organization(
"""ID of a organization to delete."""
id: ID!
): Organization!
"""Find organizations list."""
organizations(
"""Page number (default: 1)."""
page: Int = 1
"""Number of nodes to list per page (default: 10, max 100)."""
perPage: Int = 10
sort: OrganizationSort = {field: CREATED_AT, direction: ASC}
"""Filter name containing phrase"""
name: String
): OrganizationPagination!
}
input OrganizationSort {
"""The field to sort results by."""
field: OrganizationSortField!
"""The sort direction."""
direction: SortDirection!
}
enum OrganizationSortField {
CREATED_AT
NAME
}
type Mutation {
changePassword(input: ChangePasswordInput!): ChangePasswordPayload!
login(input: LoginInput!): LoginPayload!
resetPassword(input: ResetPasswordInput!): ResetPasswordPayload!
setNewPassword(input: SetNewPasswordInput!): SetNewPasswordPayload!
createOrganization(input: CreateOrganizationInput!): CreateOrganizationPayload!
updateOrganization(input: UpdateOrganizationInput!): UpdateOrganizationPayload!
deleteOrganization(input: DeleteOrganizationInput!): DeleteOrganizationPayload!
createFileUpload(input: CreateFileUploadInput!): CreateFileUploadPayload!
}
input ChangePasswordInput {
"""Current password of the authenticated user."""
currentPassword: String!
"""New password."""
newPassword: String!
}
input LoginInput {
"""Email of the user."""
email: String!
"""Password of the user."""
password: String!
}
input ResetPasswordInput {
"""Email of the user."""
email: String!
}
input SetNewPasswordInput {
"""SetNew password token of the user."""
resetPasswordToken: String!
"""New password."""
newPassword: String!
}
input CreateOrganizationInput {
"""Name of the organization."""
name: String!
}
input UpdateOrganizationInput {
"""ID of organization to update."""
id: ID!
"""Name of the organization."""
name: String
}
input DeleteOrganizationInput {
"""ID of organization to delete."""
id: ID!
}
input CreateFileUploadInput {
"""Size of the file to upload."""
fileSize: Float!
"""Name of the file to upload."""
fileName: String!
}