OBJECT

ReadNotificationsPayload

link GraphQL Schema definition

1type ReadNotificationsPayload {
2
3# The amount of notifications that were set to read.
4count: Int!
5
6# The notifications that were set to read. Only ID and isRead are accessible.
7notifications: [OnsiteNotification]!
8
9}