OBJECT

Simulator

link GraphQL Schema definition

  • type Simulator implements ActivityInterface {
  • simulatorNid: SimulatorNid
  • acftType: AircraftType
  • flightNumber: String
  • # Requires access to resource GRAPHQL_AIRPORT
  • startAirport: Airport
  • # Requires access to resource GRAPHQL_AIRPORT
  • endAirport: Airport
  • startTime: Int!
  • # Arguments
  • # timeZoneToggle: [Not documented]
  • startTimeInTimeZone(timeZoneToggle: TimeZoneToggle!): Int!
  • endTime: Int!
  • # Arguments
  • # timeZoneToggle: [Not documented]
  • endTimeInTimeZone(timeZoneToggle: TimeZoneToggle!): Int!
  • takeoffTime: Int
  • # Arguments
  • # timeZoneToggle: [Not documented]
  • takeoffTimeInTimeZone(timeZoneToggle: TimeZoneToggle!): Int
  • landingTime: Int
  • # Arguments
  • # timeZoneToggle: [Not documented]
  • landingTimeInTimeZone(timeZoneToggle: TimeZoneToggle!): Int
  • reportingTime: Int
  • # Arguments
  • # timeZoneToggle:
  • reportingTimeInTimezone(
  • timeZoneToggle: TimeZoneToggle!
  • ): Int
  • dutyEndTime: Int
  • # Arguments
  • # timeZoneToggle:
  • dutyEndTimeInTimezone(timeZoneToggle: TimeZoneToggle!): Int
  • landingsAmount: Int
  • takeoffsAmount: Int
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • captain: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • firstOfficer: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • CPT2: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • FO2: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • TRI: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • TRE: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • LTC: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • FE: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • FE2: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • OBS: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • FA: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • FA2: CrewMember
  • notes: String
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • pilotTakingOff: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • pilotLanding: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • pilotMonitoringTakingOff: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • pilotMonitoringLanding: CrewMember
  • approachCount: [JourneyLogApproachCount!]
  • approachTypeCount: [JourneyLogApproachTypeCount!]
  • deleted: Boolean!
  • nightTakeOff: NightTakeOffOrLanding @deprecated( reason: "Use nightTakeOffCount instead" )
  • nightLanding: NightTakeOffOrLanding @deprecated( reason: "Use nightLandingCount instead" )
  • nightTakeOffCount: Int
  • nightLandingCount: Int
  • tagList: [SimulatorTag!]!
  • aocSource: AocSource!
  • aoc: AocNid
  • holding: Boolean
  • simulatorType: String
  • files: [File!]!
  • place: String
  • revalidatedEndorsementList: [Endorsement!]
  • }