OBJECT

Alert

A type that describes a broadcast alert

link GraphQL Schema definition

1type Alert {
2
3# Title of the alert
4title: String!
5
6# Body text of the alert
7body: String!
8
9# DateTime of the alert
10date: String!
11
12# Warning level of the alert
13level: Level
14
15}

link Required by