DestinationData
Information about destinantion
type DestinationData {
code: ID!
available: Boolean!
destinationLeaf: [String!]
texts(
languages: [Language!]
): [Text!]!
closestDestinations: [String!]
parent: String
type: DestinationType
}
Fields
DestinationData.code ● ID! non-null scalar
Destination Code
DestinationData.available ● Boolean! non-null scalar
Indicates if you can search by destination
DestinationData.destinationLeaf ● [String!] list scalar
Returns destination leafs of the destination.
DestinationData.texts ● [Text!]! non-null object
Contains the destination name
DestinationData.texts.languages ● [Language!] list scalar
DestinationData.closestDestinations ● [String!] list scalar
Closest destinations, indicates destinations in proximity
DestinationData.parent ● String scalar
Parent destination code
DestinationData.type ● DestinationType enum
Indicates destination type, zone or city
Member Of
Destination object ● Location object
Implemented By
DestinationSearchResult union