Skip to content

Commit 59257d0

Browse files
Ronan-Fernandespt-tsl
authored andcommitted
BA-2197: default social input send behavior (#199)
* Default social input send behavior * Versioning
1 parent 7466c31 commit 59257d0

File tree

1 file changed

+5
-14
lines changed

1 file changed

+5
-14
lines changed

packages/components/schema.graphql

+5-14
Original file line numberDiff line numberDiff line change
@@ -154,20 +154,9 @@ type ChatRoomCreatePayload {
154154
clientMutationId: String
155155
}
156156

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+
"""
171160
type ChatRoomEdge {
172161
"""The item at the end of the edge"""
173162
node: ChatRoom
@@ -201,6 +190,7 @@ type ChatRoomOnMessagesCountUpdate {
201190
type ChatRoomOnRoomUpdate {
202191
room: ChatRoomEdge
203192
removedParticipants: [ChatRoomParticipant]
193+
addedParticipants: [ChatRoomParticipant]
204194
}
205195

206196
type ChatRoomParticipant implements Node {
@@ -324,6 +314,7 @@ type ChatRoomUpdatePayload {
324314
_debug: DjangoDebug
325315
room: ChatRoomEdge
326316
removedParticipants: [ChatRoomParticipant]
317+
addedParticipants: [ChatRoomParticipant]
327318
clientMutationId: String
328319
}
329320

0 commit comments

Comments
 (0)