OBJECT
CrewPanelCrewQuerySection
link GraphQL Schema definition
- type CrewPanelCrewQuerySection {
- # Requires access to resource GRAPHQL_CREW_MEMBER.
- # List cannot be empty.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # loginNid: [Not documented]
- # trNidList: [Not documented]
- # draftToggle: [Not documented]
- (
- : ApiLoginNidScalar!,
- : [TrNid!]!,
- : Boolean!
- ): [CrewMember!]!
- # Requires access to resource GRAPHQL_CREW_MEMBER.
- # List cannot be empty.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # loginNid:
- # flightNidList:
- # draftToggle:
- (
- : ApiLoginNidScalar!,
- : [FlightNid!]!,
- : Boolean!
- ): [CrewMemberListForReplacement!]!
- # Requires access to resource GRAPHQL_AIRPORT.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # loginNid:
- # dateTime:
- # draftToggle:
- # dutyDefinitionNid:
- (
- : ApiLoginNidScalar!,
- : DateTime!,
- : Boolean!,
- : ApiDutyDefinitionNidScalar
- ): Airport
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # trNidList:
- # Possible violation list: IS_NOT_THE_SAME_CREW
- # draftToggle:
- (
- : [TrNid!]!,
- : Boolean!
- ): CrewPanelCrewQuerySectionAvailableForSwapBetweenFlightsOutput!
- # Requires access to resource GRAPHQL_CREW_PANEL
- #
- # Arguments
- # trNidList:
- # crew:
- (
- : [FlightNid!]!,
- : [CrewFeasibilityCheckInputType!]!
- ): [FeasibilityType!]!
- # List cannot be empty.
- # If in drafts mode, requires operator to turn that feature on globally in
- # settings.
- #
- # Arguments
- # trNidList:
- # crewSwapRecordList:
- # draftToggle:
- (
- : [TrNid!]!,
- : [CrewSwapRecordInput!]!,
- : Boolean!
- ): [FeasibilityType!]!
- # time interval has to be shorter than 3 months
- #
- # Arguments
- # timeInterval:
- # loginList:
- # filterToggle:
- # includeDrafts:
- (
- : TimeIntervalInput!,
- : [CrewMemberNid!]!,
- : CrewPanelFilterToggle!,
- : Boolean!
- ): [CrewLocations!]!
- }