返回提交历史
Added
quora/graphql/PoeBotEditMutation.graphql
+24
-0
XFEstudio/gpt4free
Create PoeBotEditMutation.graphql
9f5552b1
代码差异
1 个文件
+24
-0
@@ -0,0 +1,24 @@
1
mutation EditBotMain_poeBotEdit_Mutation(
2
$botId: BigInt!
3
$handle: String!
4
$description: String!
5
$introduction: String!
6
$isPromptPublic: Boolean!
7
$baseBot: String!
8
$profilePictureUrl: String
9
$prompt: String!
10
$apiUrl: String
11
$apiKey: String
12
$hasLinkification: Boolean
13
$hasMarkdownRendering: Boolean
14
$hasSuggestedReplies: Boolean
15
$isPrivateBot: Boolean
16
) {
17
poeBotEdit(botId: $botId, handle: $handle, description: $description, introduction: $introduction, isPromptPublic: $isPromptPublic, model: $baseBot, promptPlaintext: $prompt, profilePicture: $profilePictureUrl, apiUrl: $apiUrl, apiKey: $apiKey, hasLinkification: $hasLinkification, hasMarkdownRendering: $hasMarkdownRendering, hasSuggestedReplies: $hasSuggestedReplies, isPrivateBot: $isPrivateBot) {
18
status
19
bot {
20
handle
21
id
22
}
23
}
24
}