OBJECT

ChannelNotificationSettings

Data about notification settings for a follow relationship.

link GraphQL Schema definition

1type ChannelNotificationSettings {
2
3# If true, enabled notifications will be send. If false, all notifications are
4# disabled, even if their individual setting is enabled.
5isEnabled: Boolean!
6
7# A list of channel notification settings.
8nodes: [ChannelNotificationSetting!]!
9
10}