INPUT_OBJECT

SetDashboardAlertQueuePreferenceInput

Inputs to the SetDashboardAlertQueuePreference mutation. Only one of the boolean settings should be set at once.

link GraphQL Schema definition

1input SetDashboardAlertQueuePreferenceInput {
4
2# If true, cannot publish alerts to the user.
3shouldEnableDNDMode: Boolean
7
5# If true, cannot publish bits alerts to the user.
6shouldHideBits: Boolean
10
8# If true, cannot publish follows alerts to the user.
9shouldHideFollows: Boolean
13
11# If true, cannot publish subscription gift alerts to the user.
12shouldHideGiftSubscriptions: Boolean
16
14# If true, cannot publish hosts alerts to the user.
15shouldHideHosts: Boolean
19
17# If true, cannot publish raids alerts to the user.
18shouldHideRaids: Boolean
23
20# If true, cannot publish regular subscriptions alerts to the user (gift subs are
21# still shown).
22shouldHideSubscriptions: Boolean
26
24# The ID corresponding to the user whose alert queue preference should be updated.
25userID: ID!
27}