File tree 1 file changed +5
-14
lines changed
1 file changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -154,20 +154,9 @@ type ChatRoomCreatePayload {
154
154
clientMutationId : String
155
155
}
156
156
157
- input ChatRoomDeleteMessageInput {
158
- id : ID !
159
- clientMutationId : String
160
- }
161
-
162
- type ChatRoomDeleteMessagePayload {
163
- """May contain more than one error for same field."""
164
- errors : [ErrorType ]
165
- _debug : DjangoDebug
166
- deletedMessage : MessageEdge
167
- clientMutationId : String
168
- }
169
-
170
- """A Relay edge containing a `ChatRoom` and its cursor."""
157
+ """
158
+ A Relay edge containing a `ChatRoom` and its cursor.
159
+ """
171
160
type ChatRoomEdge {
172
161
"""The item at the end of the edge"""
173
162
node : ChatRoom
@@ -201,6 +190,7 @@ type ChatRoomOnMessagesCountUpdate {
201
190
type ChatRoomOnRoomUpdate {
202
191
room : ChatRoomEdge
203
192
removedParticipants : [ChatRoomParticipant ]
193
+ addedParticipants : [ChatRoomParticipant ]
204
194
}
205
195
206
196
type ChatRoomParticipant implements Node {
@@ -324,6 +314,7 @@ type ChatRoomUpdatePayload {
324
314
_debug : DjangoDebug
325
315
room : ChatRoomEdge
326
316
removedParticipants : [ChatRoomParticipant ]
317
+ addedParticipants : [ChatRoomParticipant ]
327
318
clientMutationId : String
328
319
}
329
320
You can’t perform that action at this time.
0 commit comments