Invia messaggio
Mutation GraphQL utilizzata
mutation SendMessage(
$propertyId: ID!,
$conversationId: ID!,
$sender: MessageSenderInput!,
$message: MessageInput!
) {
sendMessage(
propertyId: $propertyId,
conversationId: $conversationId,
sender: $sender,
message: $message
) {
id
status
sentAt
}
}