Segment
No description
type Segment {
arrival: DateTime!
departure: DateTime!
destination: String!
index: Int!
origin: String!
transportCode: String
}
Fields
Segment.arrival
● DateTime!
non-null scalar
Arrival date of the transport segment received in standard ISO 8601
Segment.departure
● DateTime!
non-null scalar
Departure date of the transport segment received in standard ISO 8601
Segment.destination
● String!
non-null scalar
Destination of the segment
Segment.index
● Int!
non-null scalar
Index (order) of the segment
Segment.origin
● String!
non-null scalar
Origin of the segment
Segment.transportCode
● String
scalar
Code of the transport for the segment
Member Of
Transport
object