OBJECT

NotificationSubscriptionTopic

An object containing information about the topic for the current user

link GraphQL Schema definition

1type NotificationSubscriptionTopic {
2
3# Unique identifier for the topic
4id: String!
5
6# Type of the topic
7type: NotificationTopicType
8
9# Title of the topic
10title: String
11
12# The relationship between the current user and the topic
13self: NotificationSubscriptionTopicSelfConnection
14
15}