Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BA-2081: chat rooms refetch issue #182

Merged
merged 2 commits into from
Feb 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
BA-2197: default social input send behavior (#199)
* Default social input send behavior

* Versioning
Ronan-Fernandes authored and pt-tsl committed Feb 14, 2025
commit c6398893b1931c73d1d51c1a6ec18dfa04bfb837
19 changes: 5 additions & 14 deletions packages/components/schema.graphql
Original file line number Diff line number Diff line change
@@ -154,20 +154,9 @@ type ChatRoomCreatePayload {
clientMutationId: String
}

input ChatRoomDeleteMessageInput {
id: ID!
clientMutationId: String
}

type ChatRoomDeleteMessagePayload {
"""May contain more than one error for same field."""
errors: [ErrorType]
_debug: DjangoDebug
deletedMessage: MessageEdge
clientMutationId: String
}

"""A Relay edge containing a `ChatRoom` and its cursor."""
"""
A Relay edge containing a `ChatRoom` and its cursor.
"""
type ChatRoomEdge {
"""The item at the end of the edge"""
node: ChatRoom
@@ -201,6 +190,7 @@ type ChatRoomOnMessagesCountUpdate {
type ChatRoomOnRoomUpdate {
room: ChatRoomEdge
removedParticipants: [ChatRoomParticipant]
addedParticipants: [ChatRoomParticipant]
}

type ChatRoomParticipant implements Node {
@@ -324,6 +314,7 @@ type ChatRoomUpdatePayload {
_debug: DjangoDebug
room: ChatRoomEdge
removedParticipants: [ChatRoomParticipant]
addedParticipants: [ChatRoomParticipant]
clientMutationId: String
}