t.me/xtekky commited on
Commit
9f5552b
·
1 Parent(s): 05f3695

Create PoeBotEditMutation.graphql

Browse files
quora/graphql/PoeBotEditMutation.graphql ADDED
@@ -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
+ }