OBJECT

TimeZone

Information about a time zone

link GraphQL Schema definition

1type TimeZone {
2
3# Time zone name, such as `America/Los_Angeles`
4name: String!
5
6# Known abbreviations for the time zone. These may include
7# offset variations such as those caused by daylight savings time.
8abbreviations: [TimeZoneAbbreviation!]!
9
10}