OBJECT

ContactFlight

link GraphQL Schema definition

  • type ContactFlight {
  • isSubcharter: Boolean!
  • aircraftType: String
  • aircraftRegistration: String
  • # Requires access to resource GRAPHQL_AIRPORT
  • startAirport: Airport!
  • # Requires access to resource GRAPHQL_AIRPORT
  • endAirport: Airport!
  • startDateTimeUTC: DateTime!
  • endDateTimeUTC: DateTime!
  • # Flight time in seconds
  • flightTime: Int!
  • # Requires access to resource GRAPHQL_CONTACT
  • client: Contact
  • }