OBJECT
TrainingSection
link GraphQL Schema definition
- type TrainingSection {
- # Requires access to resource GRAPHQL_CREW_TRAINING_SEE
- #
- # Arguments
- # wildcard: Full text search over crew member code and name,
- # training name, certificates, ATO and training center. Tokens shorter than 3
- # characters are ignored.
- # crewMemberNidList:
- # statusList:
- # endorsementNidList:
- # dateRange: Returns events overlapping the given range. Events
- # without dates are excluded.
- # limit: Number of retrieved records.
- # offset: Number of skipped records.
- (
- : String,
- : [CrewMemberNid!],
- : [TrainingEventStatus!],
- : [EndorsementNid!],
- : OptionalDateRangeInput,
- : Int,
- : Int
- ): [TrainingEvent!]!
- # Arguments
- # trainingEventNid:
- # Possible violation list: IS_NOT_SOME_ERROR
- (: TrainingEventNid!): TrainingSectionGetOutput!
- }