OBJECT

FlightWatchQuery

Node for Flight Watch data

link GraphQL Schema definition

  • type FlightWatchQuery {
  • # Requires access to resource GRAPHQL_FLIGHT_WATCH.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNidList: [Not documented]
  • flightWatchList(flightNidList: [FlightNid!]!): [FlightWatch!]!
  • # Flights Watch list created, modified or deleted after selected date (max one
  • # week until now)
  • #
  • # Arguments
  • # dateTime: [Not documented]
  • getModifiedFlightWatchList(dateTime: DateTime!): FlightWatchChanges!
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • getFlightWatchHistory(flightNid: FlightNid!): [FlightWatchHistoryEntry!]!
  • # Requires access to resource GRAPHQL_SALES_QUOTE_REQUEST_SEE
  • #
  • # Arguments
  • # quoteRealizationLegNid: [Not documented]
  • getSubcharterFlightWatchHistory(
  • quoteRealizationLegNid: QuoteRealizationLegNid!
  • ): [FlightWatchHistoryEntry!]!
  • getAvailableRegCauseList: [RegCauseType!]! @deprecated( reason: "Please use getAvailableRegulationCauseList field instead" )
  • getAvailableRegulationCauseList: [RegulationCause!]!
  • }