OBJECT

Timezone

link GraphQL Schema definition

  • type Timezone {
  • # Internal timezone identifier
  • tzNid: Int!
  • # Continent where this timezone is located
  • continent: Continent!
  • # Primary country associated with this timezone
  • country: Country!
  • # Representative latitude for this timezone in angular seconds (1 degree = 3600
  • # seconds)
  • latitude: Int!
  • # Representative longitude for this timezone in angular seconds (1 degree = 3600
  • # seconds)
  • longitude: Int!
  • # Timezone display name
  • name: String!
  • # IANA timezone identifier (e.g., "Europe/Zurich", "Africa/Casablanca")
  • nativeTimezoneName: String!
  • # Additional timezone information or notes
  • comment: 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]
  • utcOffsetSeconds(time: DateTime): Int!
  • }