diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-10 01:09:29 +0200 |
---|---|---|
committer | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-10 01:09:29 +0200 |
commit | 3be905b742b040c7f497727f9e765a8d709baa44 (patch) | |
tree | 0aafc1ea98e094a7eb47343b0ed5f60c158ce52a /quora/graphql/ViewerStateFragment.graphql | |
parent | you.com api (gpt 3.5 + internet) (diff) | |
download | gpt4free-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/ViewerStateFragment.graphql')
-rw-r--r-- | quora/graphql/ViewerStateFragment.graphql | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/quora/graphql/ViewerStateFragment.graphql b/quora/graphql/ViewerStateFragment.graphql new file mode 100644 index 00000000..3cd83e9c --- /dev/null +++ b/quora/graphql/ViewerStateFragment.graphql @@ -0,0 +1,30 @@ +fragment ViewerStateFragment on Viewer { + id + __typename + iosMinSupportedVersion: integerGate(gateName: "poe_ios_min_supported_version") + iosMinEncouragedVersion: integerGate( + gateName: "poe_ios_min_encouraged_version" + ) + macosMinSupportedVersion: integerGate( + gateName: "poe_macos_min_supported_version" + ) + macosMinEncouragedVersion: integerGate( + gateName: "poe_macos_min_encouraged_version" + ) + showPoeDebugPanel: booleanGate(gateName: "poe_show_debug_panel") + enableCommunityFeed: booleanGate(gateName: "enable_poe_shares_feed") + linkifyText: booleanGate(gateName: "poe_linkify_response") + enableSuggestedReplies: booleanGate(gateName: "poe_suggested_replies") + removeInviteLimit: booleanGate(gateName: "poe_remove_invite_limit") + enableInAppPurchases: booleanGate(gateName: "poe_enable_in_app_purchases") + availableBots { + nickname + displayName + profilePicture + isDown + disclaimer + subtitle + poweredBy + } +} + |