chatgpt-plugin/utils/poe/graphql/ShareMessagesMutation.graphql
2023-04-15 21:00:34 +08:00

9 lines
213 B
GraphQL

mutation ShareMessagesMutation(
$chatId: BigInt!
$messageIds: [BigInt!]!
$comment: String
) {
messagesShare(chatId: $chatId, messageIds: $messageIds, comment: $comment) {
shareCode
}
}