OBJECT

FlightSupportQuery

link GraphQL Schema definition

  • type FlightSupportQuery {
  • # List of services supported by given flight support - only for internal LEON
  • # usage.
  • #
  • # Arguments
  • # oauthClientNid: [Not documented]
  • getFlightSupportServices(
  • oauthClientNid: OAuthClientNid!
  • ): [FlightSupportServiceEnum!]!
  • # Flight Support configuration - only for internal LEON usage.
  • #
  • # Arguments
  • # oauthClientNid: [Not documented]
  • getFlightSupportConfig(oauthClientNid: OAuthClientNid!): FlightSupportConfigQuery
  • # Flight support flight - only for internal LEON usage..
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • # oauthClientNid: [Not documented]
  • getFlightSupportFlight(
  • flightNid: FlightNid!,
  • oauthClientNid: OAuthClientNid!
  • ): FlightSupportFlightQuery!
  • # time interval has to be shorter than 3 months
  • #
  • # Arguments
  • # timeInterval: [Not documented]
  • findFlightSupportFlightBetween(
  • timeInterval: TimeIntervalInput!
  • ): [FlightSupportFlightQuery!]!
  • # Arguments
  • # flightNid: [Not documented]
  • getFlight(flightNid: FlightSupportFlightNid!): FlightSupportFlightQuery!
  • # Flights list, on which requested/created services, after selected date (max one
  • # week until now)
  • #
  • # Arguments
  • # dateTime: [Not documented]
  • getCreatedFlightServiceList(dateTime: DateTime!): [FlightSupportFlight!]!
  • # Flights list, on which modified services (or services notes), after selected
  • # date (max one week until now)
  • #
  • # Arguments
  • # dateTime: [Not documented]
  • getModifiedFlightServiceList(dateTime: DateTime!): [FlightSupportFlight!]!
  • # Flights list, on which modified main flight note, after selected date (max one
  • # week until now)
  • #
  • # Arguments
  • # dateTime: [Not documented]
  • getModifiedFlightServiceNoteList(
  • dateTime: DateTime!
  • ): [FlightSupportFlight!]!
  • # Flights list, on which modified schedule, after selected date (max one week
  • # until now)
  • #
  • # Arguments
  • # dateTime: [Not documented]
  • getModifiedFlightScheduleList(
  • dateTime: DateTime!
  • ): [FlightSupportFlight!]!
  • # List of ruled out services - only for internal LEON usage..
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid:
  • # oauthClientNid:
  • flightSupportRuledOutServices(
  • flightNid: FlightNid!,
  • oauthClientNid: OAuthClientNid!
  • ): [FlightSupportServiceEnum!]!
  • # Flights list, on which modified crew, after selected date (max one week until
  • # now)
  • #
  • # Arguments
  • # dateTime:
  • flightListOnWhichModifiedCrew(
  • dateTime: DateTime!
  • ): [FlightSupportFlight!]!
  • # Flights list, on which modified passenger list, after selected date (max one
  • # week until now)
  • #
  • # Arguments
  • # dateTime:
  • flightListOnWhichModifiedPassengerList(
  • dateTime: DateTime!
  • ): [FlightSupportFlight!]!
  • }