OBJECT

WhisperSettings

Settings related to the Whispers (private user-to-user messaging) feature.

link GraphQL Schema definition

1type WhisperSettings {
2
3# If true, disallows strangers from initiating a whisper thread to this user.
4isBlockingWhispersFromStrangers: Boolean!
5
6# If true, this user is disallowed from sending or receiving whisper messages.
7isWhisperBanned: Boolean!
8
9}