OBJECT

CrewPanelPositioning

Represents single positioning for crew panel

link GraphQL Schema definition

  • type CrewPanelPositioning {
  • trNid: Int!
  • loginNid: Int!
  • startTimeIso: DateTimeWithTimezone!
  • endTimeIso: DateTimeWithTimezone!
  • startTimeLT: DateTimeWithTimezone!
  • endTimeLT: DateTimeWithTimezone!
  • startApt: String @deprecated( reason: "Please use startAirport field instead" )
  • endApt: String @deprecated( reason: "Please use endAirport field instead" )
  • # Requires access to resource GRAPHQL_AIRPORT
  • startAirport: Airport
  • # Requires access to resource GRAPHQL_AIRPORT
  • endAirport: Airport
  • hasDraft: Boolean!
  • positioningNid: PositioningNid!
  • note: String
  • name: String!
  • isOption: Boolean!
  • ticketNumber: String
  • type: PositioningType!
  • aocSource: AocSource!
  • aocNid: AocNid
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • driverLogin: CrewMember
  • # Requires access to resource GRAPHQL_CREW_MEMBER
  • crew: [CrewMember!]! @deprecated( reason: "Please use crewOnPositioning field instead." )
  • crewOnPositioning: [CrewPanelCrewMemberOnPositioning!]!
  • fileList: [File!]!
  • tagList: [Tag!]!
  • draftStatus: DraftStatus!
  • # Requires access to resource GRAPHQL_FLIGHT
  • trip: Trip
  • isRebook: Boolean
  • # Requires access to resource GRAPHQL_ACFT
  • aircraft: Aircraft
  • # Positioning start time converted to the specified base timezone. If baseNid is
  • # not provided, returns time in the default operator base timezone
  • #
  • # Arguments
  • # baseNid:
  • startTimeBase(baseNid: BaseNid): DateTime!
  • # Positioning end time converted to the specified base timezone. If baseNid is not
  • # provided, returns time in the default operator base timezone
  • #
  • # Arguments
  • # baseNid:
  • endTimeBase(baseNid: BaseNid): DateTime!
  • }