OBJECT
NotificationMailbox
link GraphQL Schema definition
1 type NotificationMailbox { 2 3 # Special mailboxes like the default user and org mailbox have 4 # ids matching the userId/applicationId 5 ID! : 6 7 String! : 8 9 ( 10 NotificationDateTimeFilter!], : [ 11 Int, : 12 Int, : 13 NotificationDateTimeField, : 14 OrderDirection, : 15 NotificationFlag!], : [ 16 filterCombineOperator : 17 ): NotificationList 18 19 EventFilter : 20 21 String : 22 23 JSONData : 24 25 # The mailboxes can be paused and no new notification would be 26 # posted until they are unpaused. This is different for silencing 27 # the notifications from the UI 28 Boolean : 29 30 # Some frequently queried statistics from the Notifications field 31 # so the clients don't have to page through to get that information 32 DateTime : 33 34 DateTime : 35 36 Int : 37 38 Int : 39 40 Int : 41 42 Int : 43 44 }
link Required by
- MutationMutations are used to modify data. Each mutation takes an input that contains the data necessary to create or update the data in question.
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.