Files
clientsflow/frontend/graphql/operations/create-chat-conversation.graphql
2026-02-20 12:10:25 +07:00

11 lines
189 B
GraphQL

mutation CreateChatConversationMutation($title: String) {
createChatConversation(title: $title) {
id
title
createdAt
updatedAt
lastMessageAt
lastMessageText
}
}