OBJECT
Ftl
Section for querying data related to FTL module.
link GraphQL Schema definition
- type Ftl {
- # List of duties fulfilling criteria specified in arguments..
- # time interval has to be shorter than 1 month 1 day
- #
- # Arguments
- # timeInterval: [Not documented]
- (: TimeIntervalInput!): [FtlDuty!]!
- # List of all FTL settings for a given crew member at a given aircraft at a given
- # time.
- #
- #
If no crew member is passed via arguments it will fall back to the - # settings for aircraft
- #
- # and then default for the operator. If time is not passed the settings for NOW
- # will be returned.
- #
- # Arguments
- # time: [Not documented]
- # aircraftNid: [Not documented]
- # crewMemberNid: [Not documented]
- (
- : DateTimeWithTimezone,
- : AircraftNid,
- : CrewMemberNid
- ): FtlSettings
- # A duty, related to a sector, and crew members on the list.
- # Requires access to resource GRAPHQL_FTL
- #
- # Arguments
- # input: [Not documented]
- (: CrewMembersOnSectorInput): [FtlDutyForCrewMemberOnSector!]!
- }