Port
Represents a port that is used in sectors and travel bookings.
type Port {
country: String
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
uniqueCode: String
}
Fields
Port.country ● String scalar
A UTF-8 string representing the country of the port. Optional.
Port.createdAt ● DateTime! non-null scalar
The date and time the record was created.
Port.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Port.id ● ID! non-null scalar
The unique identifier for a port.
Port.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
Port.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Port.name ● String! non-null scalar
A UTF-8 string representing the name of the port.
Port.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the port. Optional.
The value must be unique across all ports globally.
Returned By
ports query
Member Of
Sector object ● TravelBooking object ● TravelSetup object