OBJECT

NotificationPreferences

User's notification preferences on the notification setting page

link GraphQL Schema definition

1type NotificationPreferences {
2
3# Has the user opted out of email notification
4emailNotificationOptIn: Boolean
5
6# Sign in user's notification subscriptions information on the notification
7# setting page
8# pageSize - pageSize for showing the topics on the notification setting page,
9# default is set to 50
10# token - current pagination parameter on the notification setting page
11notificationSubscriptions(pageSize: Int, token: String): NotificationSubscriptionsPage
12
13}