OBJECT

Alert

Notification that should be shown to the customer

link GraphQL Schema definition

1type Alert {
2
3# What form does the alert take.
4type: AlertType!
5
6# A call to action to redirect a customer to an external page.
7button: AlertButton
8
9# Information about a situation or knowledge the customer needs.
10message: String!
11
12# Priority of the notification
13order: Int!
14
15}