OBJECT
MaintenanceQuery
Node for maintenance queries
link GraphQL Schema definition
- type MaintenanceQuery {
- # List maintenance.
- # Returns only revisions accessible for logged user considering aircraft
- # privileges.
- # Requires access to resource GRAPHQL_ACFT
- #
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # status: [Not documented]
- (
- : TimeIntervalInput!,
- : [AircraftNid!],
- : Status
- ): [AircraftReservation!]! @deprecated( reason: "Use aircraftMaintenanceList instead" )
- # List maintenance.
- # Returns only revisions accessible for logged user considering aircraft
- # privileges.
- # Requires access to resource GRAPHQL_ACFT
- #
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # status: [Not documented]
- # tagList: [Not documented]
- (
- : TimeIntervalInput!,
- : [AircraftNid!],
- : Status,
- : [TagDefinitionNid!]
- ): [AircraftMaintenance!]!
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # status: [Not documented]
- # tagList: [Not documented]
- (
- : TimeIntervalInput!,
- : [AircraftNid!],
- : Status,
- : [TagDefinitionNid!]
- ): FileOutputType!
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # status: [Not documented]
- # tagList: [Not documented]
- (
- : TimeIntervalInput!,
- : [AircraftNid!],
- : Status,
- : [TagDefinitionNid!]
- ): FileOutputType!
- # Requires access to resource GRAPHQL_ACFT
- #
- # Arguments
- # aircraftMaintenanceNid: [Not documented]
- (: AircraftMaintenanceNid!): AircraftMaintenance!
- # Arguments
- # aircraftMaintenanceNid: [Not documented]
- (
- : AircraftMaintenanceNid!
- ): [MaintenanceHistoryEntry!]!
- : [TagDefinition!]!
- # Arguments
- # aircraftNid: [Not documented]
- # locationNid: [Not documented]
- # startTimeUTC: [Not documented]
- # endTimeUTC: [Not documented]
- # aircraftMaintenanceNid: [Not documented]
- (
- : AircraftNid!,
- : LocationNid!,
- : DateTime!,
- : DateTime!,
- : AircraftMaintenanceNid
- ): MaintenanceCollisions!
- # Arguments
- # timeInterval: [Not documented]
- # aircraftList: [Not documented]
- # hilItemNumber: [Not documented]
- # melItemNumber: [Not documented]
- # flightLimitations: [Not documented]
- # isOpen: [Not documented]
- (
- : TimeIntervalInput!,
- : [AircraftNid!]!,
- : String,
- : String,
- : HilFlightLimitation,
- : Boolean
- ): [Hil!]!
- # Arguments
- # holdItemNid: [Not documented]
- (: HoldItemNid!): Hil!
- # Arguments
- # holdItemNid:
- (: HoldItemNid!): [HilHistoryEntry!]!
- }