-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
238 lines (210 loc) · 4.68 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
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
type APIError {
code: ErrorCode!
message: String!
}
type Channel {
author: User!
createdAt: DateTime!
id: Float!
messages: [Message!]!
name: String!
owner: Server!
updatedAt: DateTime!
}
type ChannelResponse {
channel: Channel
error: APIError
}
type Confirmation {
error: APIError
ok: Boolean!
}
"""
The javascript `Date` as string. Type represents date and time as the ISO Date string.
"""
scalar DateTime
type Emote {
author: User!
createdAt: DateTime!
id: Float!
image: String!
name: String!
owner: Server!
updatedAt: DateTime!
}
input EmoteData {
image: String!
name: String!
}
type EmoteObject {
id: Float!
image: String!
name: String!
owner: ProtoServer!
}
type EmoteResponse {
emotes: [EmoteObject!]
error: APIError
}
enum ErrorCode {
CHANNEL_DOESNT_EXIST
EMOTE_DOESNT_EXIST
INVITE_DOESNT_EXIST
NOT_LOGGED_IN
NOT_SERVER_ADMIN
NOT_SERVER_MEMBER
OTHER
SERVER_DOESNT_EXIST
UNKNOWN
USER_DOESNT_EXIST
}
type Invite {
author: User!
createdAt: DateTime!
expire: DateTime
id: Float!
owner: Server!
updatedAt: DateTime!
}
type InviteListResponse {
error: APIError
invites: [ProtoInvite!]
}
type InviteResponse {
error: APIError
invite: ProtoInvite
}
type Message {
author: User!
channel: Channel!
content: String!
createdAt: DateTime!
emotes: [Emote!]
id: Float!
image: String
invite: Invite
updatedAt: DateTime!
}
input MessageData {
content: String!
emotes: [Int!]
image: String
invite: Int
}
type Mutation {
acceptRequest(userId: String!): Boolean
changeAvatar(
"""URL of the new avatar"""
image: String!
): Confirmation!
changeServerIcon(image: String!, serverId: Float!): Confirmation!
createChannel(name: String!, serverId: Float!): Confirmation!
createEmote(emote: EmoteData!, serverId: Float!): Confirmation!
createInvite(expire: DateTime, serverId: Float!): InviteResponse!
createMessage(channelId: Float!, message: MessageData!): Confirmation!
createServer(name: String!): Confirmation!
createUser(token: String!, userData: UserData!): UserResponse!
declineRequest(userId: String!): Boolean!
kickMember(serverId: Float!, userId: String!): Confirmation!
leaveServer(serverId: Float!): Confirmation!
removeChannel(channelId: Float!): Confirmation!
removeEmote(emoteId: Float!): Confirmation!
removeFriend(userId: String!): Boolean
removeInvite(inviteId: Float!): Confirmation!
sendRequest(userId: String!): Boolean
useInvite(inviteId: Float!): Confirmation!
}
type ProtoInvite {
author: ProtoUser!
createdAt: DateTime!
expire: DateTime
id: Float!
owner: ProtoServer!
}
type ProtoServer {
icon: String
id: Float!
name: String!
}
type ProtoUser {
birthday: DateTime
createdAt: DateTime!
icon: String
id: String!
isFriend: Boolean
name: String!
sentFriendRequest: Boolean
}
type ProtoUserResponse {
error: APIError
user: ProtoUser
}
type Query {
allChannels: [Channel!]! @deprecated(reason: "debug")
allInvites: InviteListResponse!
allMessages: [Message!]!
channel(channelId: Float!): ChannelResponse!
channels(serverId: Float!): [Channel!] @deprecated(reason: "useless")
debugGetToken(email: String!, password: String!): String
emotes: EmoteResponse!
invite(inviteId: Float!): InviteResponse!
invites(serverId: Float!): InviteListResponse!
login(token: String!): User
me: UserResponse!
messages(channelId: Float!): [Message!]
myEmotes: EmoteResponse!
myServers: ServerListResponse! @deprecated(reason: "doesn't populate all values, deemed unnecessary, use the query me{}")
server(serverId: Float!): ServerResponse!
servers: [Server!]! @deprecated(reason: "debug")
user(id: String!): ProtoUserResponse!
users: [User!]! @deprecated(reason: "only for debug use")
}
type Server {
author: User!
channels: [Channel!]!
createdAt: DateTime!
emotes: [Emote!]!
icon: String
id: Float!
invites: [Invite!]!
members: [User!]!
name: String!
updatedAt: DateTime!
}
type ServerListResponse {
error: APIError
servers: [Server!]
}
type ServerResponse {
error: APIError
server: Server
}
type Subscription {
newMessage(channelId: Float!): Message!
}
type User {
birthday: DateTime
createdAt: DateTime!
email: String!
friendRequests: [User!]!
friends: [User!]!
icon: String
id: String!
name: String!
servers: [Server!]!
serversOwned: [Server!]!
updatedAt: DateTime!
}
input UserData {
birthday: DateTime!
email: String!
name: String!
}
type UserResponse {
error: APIError
user: User
}