OBJECT
Timezone
link GraphQL Schema definition
- type Timezone {
- # Internal timezone identifier
- : Int!
- # Continent where this timezone is located
- : Continent!
- # Primary country associated with this timezone
- : Country!
- # Representative latitude for this timezone in angular seconds (1 degree = 3600
- # seconds)
- : Int!
- # Representative longitude for this timezone in angular seconds (1 degree = 3600
- # seconds)
- : Int!
- # Timezone display name
- : String!
- # IANA timezone identifier (e.g., "Europe/Zurich", "Africa/Casablanca")
- : String!
- # Additional timezone information or notes
- : String!
- # UTC offset in seconds for the specified time. Automatically accounts for DST.
- # Argument: time (optional Unix timestamp or ISO datetime string, defaults to
- # current time).
- #
- # Arguments
- # time: [Not documented]
- (: DateTime): Int!
- }