OBJECT
FlightsQuery
Node for flights queries
link GraphQL Schema definition
- type FlightsQuery {
- # Flights list created, modified or deleted after selected date (max one week
- # until now)
- #
- # Arguments
- # dateTime: [Not documented]
- (: DateTime!): FlightsChanges!
- # Trips list created, modified or deleted in selected period (max period: 7 days).
- # time interval has to be shorter than 1 week
- #
- # Arguments
- # timeInterval:
- # jlPolicy:
- # tripTypes:
- # triggerList:
- (
- : TimeIntervalInput!,
- : JourneyLogPolicy!,
- : [FlightType!],
- : [TripChangeTrigger!]
- ): TripsChanges!
- # Flights list on which the crew has been modified (add, modified, deleted) after
- # selected date (max one week until now)
- #
- # Arguments
- # dateTime: [Not documented]
- (
- : DateTime!
- ): FlightsDataChanges!
- # Flights list on which the passenger list has been modified (add, modified,
- # deleted) after selected date (max one week until now)
- #
- # Arguments
- # dateTime: [Not documented]
- (
- : DateTime!
- ): FlightsDataChanges!
- : [LegEndUser!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (
- : FlightNid!
- ): [LegPnrGoProcess!]! @deprecated( reason: "Use field in integration/pnrGo/ instead" )
- : [String!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNidList: [Not documented]
- # documentTypeList: [Not documented]
- # mailboxMessageNidList: [Not documented]
- (
- : [FlightNid!]!,
- : [DocumentTypeInput!]!,
- : [MailboxMessageNid!]
- ): [MailboxMessage!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # messageType: [Not documented]
- # mailboxMessageNidList: [Not documented]
- (
- : FlightNid!,
- : OpsMessageCategory!,
- : [MailboxMessageNid!]
- ): [MailboxMessage!]!
- # OPS messages count, including documents messages
- #
- # Arguments
- # flightNidList: [Not documented]
- # messageTypeList: [Not documented]
- (
- : [Int!]!,
- : [FlightOpsMessageTypeEnum!]
- ): [OpsUnreadMessageCount!]!
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- # messageTypeList: [Not documented]
- (
- : FlightNid!,
- : [FlightOpsMessageTypeEnum!]
- ): FlightOpsMessagesType!
- # Arguments
- # wildcard: [Not documented]
- (
- : NotEmptyString!
- ): [Login!]!
- # Arguments
- # messageTypeList: [Not documented]
- (
- : [FlightOpsMessageTypeEnum!]
- ): Int!
- # Arguments
- # messageTypeList: [Not documented]
- (
- : [FlightOpsMessageTypeEnum!]
- ): [FlightOpsMessages!]!
- : [DelayCodeDescription!]!
- # Requires access to resource GRAPHQL_FLIGHT.
- # Requires access to given flight
- #
- # Arguments
- # timeInterval: [Not documented]
- # cdNid: [Not documented]
- # statusList: [Not documented]
- (
- : TimeIntervalInput!,
- : ChecklistDefinitionNid!,
- : [ChecklistStatusId!]!
- ): [Flight!]!
- # Arguments
- # from:
- # Possible violation list: MORE_OR_EQUAL_TODAY
- # limit:
- # Possible violation list:
- # INVALID_CHARACTERS_ERROR,NOT_IN_RANGE_ERROR,TOO_HIGH_ERROR,TOO_LOW_ERROR
- # offset:
- # aircraftNid:
- # checklistItemLabelWildcard:
- # type:
- # showCancelled:
- # sortBy:
- (
- : DateTime!,
- : Int!,
- : IntNonNegative!,
- : AircraftNid,
- : String,
- : ChecklistGroup!,
- : Boolean!,
- : ChecklistDueDateSort!
- ): GetFlightChecklistItemDueDateListOutput!
- : ChecklistDueDateDotColor!
- # Requires access to resource GRAPHQL_FTL
- #
- # Arguments
- # flightNid:
- (: FlightNid!): FlightFtl!
- # Arguments
- # aircraftNidList: [Not documented]
- (
- : [AircraftNid!]!
- ): [AircraftPosition!]!
- # Arguments
- # adepLocationNid: [Not documented]
- # adesLocationNid: [Not documented]
- # startTime: [Not documented]
- # flightTime: [Not documented]
- (
- : LocationNid!,
- : LocationNid!,
- : DateTime!,
- : Time!
- ): Time!
- # Arguments
- # aircraftNid: [Not documented]
- # adep: [Not documented]
- # ades: [Not documented]
- # startTime: [Not documented]
- (
- : AircraftNid!,
- : AirportNidScalar!,
- : AirportNidScalar!,
- : DateTime!
- ): [BlockTimeEstimate!]!
- # Requires access to resource CREW_APP_DOCUMENT_LIST_SEE.
- # Requires access to given flight
- #
- # Arguments
- # flightNid: [Not documented]
- (: FlightNid!): [DocumentElement!]!
- # Requires access to resource LOAD_POINT_SEE
- : LoadManagementQuery!
- }