diff options
author | Raju Komati <komatiraju032@gmail.com> | 2023-04-29 11:25:24 +0200 |
---|---|---|
committer | Raju Komati <komatiraju032@gmail.com> | 2023-04-29 11:25:24 +0200 |
commit | 54b4c789a75fec5c3a92a03dfd2d93d051309651 (patch) | |
tree | 813a7dd223e9f7df3b1708fc65a58ccc87684ba6 /quora/graphql/PoeBotCreateMutation.graphql | |
parent | Update README.md (diff) | |
download | gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar.gz gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar.bz2 gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar.lz gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar.xz gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.tar.zst gpt4free-54b4c789a75fec5c3a92a03dfd2d93d051309651.zip |
Diffstat (limited to 'quora/graphql/PoeBotCreateMutation.graphql')
-rw-r--r-- | quora/graphql/PoeBotCreateMutation.graphql | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/quora/graphql/PoeBotCreateMutation.graphql b/quora/graphql/PoeBotCreateMutation.graphql deleted file mode 100644 index 971b4248..00000000 --- a/quora/graphql/PoeBotCreateMutation.graphql +++ /dev/null @@ -1,73 +0,0 @@ -mutation CreateBotMain_poeBotCreate_Mutation( - $model: String! - $handle: String! - $prompt: String! - $isPromptPublic: Boolean! - $introduction: String! - $description: String! - $profilePictureUrl: String - $apiUrl: String - $apiKey: String - $isApiBot: Boolean - $hasLinkification: Boolean - $hasMarkdownRendering: Boolean - $hasSuggestedReplies: Boolean - $isPrivateBot: Boolean -) { - poeBotCreate(model: $model, handle: $handle, promptPlaintext: $prompt, isPromptPublic: $isPromptPublic, introduction: $introduction, description: $description, profilePicture: $profilePictureUrl, apiUrl: $apiUrl, apiKey: $apiKey, isApiBot: $isApiBot, hasLinkification: $hasLinkification, hasMarkdownRendering: $hasMarkdownRendering, hasSuggestedReplies: $hasSuggestedReplies, isPrivateBot: $isPrivateBot) { - status - bot { - id - ...BotHeader_bot - } - } -} - -fragment BotHeader_bot on Bot { - displayName - messageLimit { - dailyLimit - } - ...BotImage_bot - ...BotLink_bot - ...IdAnnotation_node - ...botHelpers_useViewerCanAccessPrivateBot - ...botHelpers_useDeletion_bot -} - -fragment BotImage_bot on Bot { - displayName - ...botHelpers_useDeletion_bot - ...BotImage_useProfileImage_bot -} - -fragment BotImage_useProfileImage_bot on Bot { - image { - __typename - ... on LocalBotImage { - localName - } - ... on UrlBotImage { - url - } - } - ...botHelpers_useDeletion_bot -} - -fragment BotLink_bot on Bot { - displayName -} - -fragment IdAnnotation_node on Node { - __isNode: __typename - id -} - -fragment botHelpers_useDeletion_bot on Bot { - deletionState -} - -fragment botHelpers_useViewerCanAccessPrivateBot on Bot { - isPrivateBot - viewerIsCreator -}
\ No newline at end of file |