Timezone (Object)
type Timezone {
tzNid: Int!
continent: Continent!
country: Country!
latitude: Int!
longitude: Int!
name: String!
nativeTimezoneName: String!
comment: String!
utcOffsetSeconds(
time: DateTime
): Int!
}
Fields
Timezone.tzNid ● Int! non-null scalar
Internal timezone identifier
Timezone.continent ● Continent! non-null object
Continent where this timezone is located
Timezone.country ● Country! non-null object
Primary country associated with this timezone
Timezone.latitude ● Int! non-null scalar
Representative latitude for this timezone in angular seconds (1 degree = 3600 seconds)
Timezone.longitude ● Int! non-null scalar
Representative longitude for this timezone in angular seconds (1 degree = 3600 seconds)
Timezone.name ● String! non-null scalar
Timezone display name
Timezone.nativeTimezoneName ● String! non-null scalar
IANA timezone identifier (e.g., "Europe/Zurich", "Africa/Casablanca")
Timezone.comment ● String! non-null scalar
Additional timezone information or notes
Timezone.utcOffsetSeconds ● Int! non-null scalar
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).
Timezone.utcOffsetSeconds.time ● DateTime scalar
Returned By
timezones.getTimezonesDetails query
Member Of
Airport object ● AirportDetails object ● OperatorBase object