summaryrefslogtreecommitdiffstats
path: root/quora/graphql/ViewerStateUpdatedSubscription.graphql
diff options
context:
space:
mode:
authort.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-10 01:09:29 +0200
committert.me/xtekky <98614666+xtekky@users.noreply.github.com>2023-04-10 01:09:29 +0200
commit3be905b742b040c7f497727f9e765a8d709baa44 (patch)
tree0aafc1ea98e094a7eb47343b0ed5f60c158ce52a /quora/graphql/ViewerStateUpdatedSubscription.graphql
parentyou.com api (gpt 3.5 + internet) (diff)
downloadgpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar.gz
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar.bz2
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar.lz
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar.xz
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.tar.zst
gpt4free-3be905b742b040c7f497727f9e765a8d709baa44.zip
Diffstat (limited to 'quora/graphql/ViewerStateUpdatedSubscription.graphql')
-rw-r--r--quora/graphql/ViewerStateUpdatedSubscription.graphql43
1 files changed, 43 insertions, 0 deletions
diff --git a/quora/graphql/ViewerStateUpdatedSubscription.graphql b/quora/graphql/ViewerStateUpdatedSubscription.graphql
new file mode 100644
index 00000000..03fc73d1
--- /dev/null
+++ b/quora/graphql/ViewerStateUpdatedSubscription.graphql
@@ -0,0 +1,43 @@
+subscription viewerStateUpdated {
+ viewerStateUpdated {
+ id
+ ...ChatPageBotSwitcher_viewer
+ }
+}
+
+fragment BotHeader_bot on Bot {
+ displayName
+ messageLimit {
+ dailyLimit
+ }
+ ...BotImage_bot
+}
+
+fragment BotImage_bot on Bot {
+ image {
+ __typename
+ ... on LocalBotImage {
+ localName
+ }
+ ... on UrlBotImage {
+ url
+ }
+ }
+ displayName
+}
+
+fragment BotLink_bot on Bot {
+ displayName
+}
+
+fragment ChatPageBotSwitcher_viewer on Viewer {
+ availableBots {
+ id
+ messageLimit {
+ dailyLimit
+ }
+ ...BotLink_bot
+ ...BotHeader_bot
+ }
+ allowUserCreatedBots: booleanGate(gateName: "enable_user_created_bots")
+}