OBJECT

Positioning

Represents single crew positioning activity.

link GraphQL Schema definition

  • type Positioning implements ActivityInterface {
  • trNid: Int! @deprecated( reason: "Please use positioningNid field instead" )
  • name: String!
  • type: PositioningType!
  • sta: Int!
  • std: Int!
  • startTime: Int! @deprecated( reason: "Use `startDateTime` field instead." )
  • startDateTime: DateTime!
  • endTime: Int! @deprecated( reason: "Use `endDateTime` field instead." )
  • startDateTimeLocal: DateTimeWithTimezone!
  • endDateTimeLocal: DateTimeWithTimezone!
  • endDateTime: DateTime!
  • # 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!
  • positioningNid: PositioningNid!
  • note: String
  • # Requires access to resource GRAPHQL_AIRPORT
  • startAirport: Airport!
  • # Requires access to resource GRAPHQL_AIRPORT
  • endAirport: Airport!
  • # Requires access to resource GRAPHQL_POSITIONING_SEE
  • crewList: [CrewMemberOnPositioning!]!
  • isCanceled: Boolean!
  • historyList: [PositioningHistorySnapshot!]
  • fileList: [File!]!
  • # Requires access to resource GRAPHQL_FLIGHT
  • trip: Trip
  • isRebook: Boolean
  • # Requires access to resource GRAPHQL_ACFT
  • aircraft: Aircraft
  • checklist: Checklist
  • }