Skip to content

bulkUpdateNotificationsInput

Autogenerated input type of bulkUpdateNotifications

Fields

deprecated DO NOT USE
fromAllNotifications · Boolean · Deprecated. Use updateAllNotifications instead
deprecated Use `updateAllNotifications` instead
notification_ids · [String] · If this is left out, updateAllNotifications must be sent as true
read · Boolean · Deprecated. Use 'seen' instead
deprecated Use `seen` instead
updateAllNotifications · Boolean · When true, recent (last 500) notifications will be updated

Used By

Definition

"""
Autogenerated input type of bulkUpdateNotifications
"""
input bulkUpdateNotificationsInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
Deprecated. Use updateAllNotifications instead
"""
fromAllNotifications: Boolean
@deprecated(reason: "Use `updateAllNotifications` instead")
"""
If this is left out, updateAllNotifications must be sent as true
"""
notification_ids: [String]
"""
Deprecated. Use 'seen' instead
"""
read: Boolean @deprecated(reason: "Use `seen` instead")
seen: Boolean
"""
When true, recent (last 500) notifications will be updated
"""
updateAllNotifications: Boolean
}