1
0
Fork 0
GPT4FREE/poe/graphql/ShareMessagesMutation.graphql
2023-03-29 21:10:42 +01:00

10 lines
213 B
GraphQL

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