OBJECT

DutySection

link GraphQL Schema definition

  • type DutySection {
  • # Allowed time interval length depends on loginNidList count.
  • # For count of up to 9 elements, time interval has to be shorter than 3 months.
  • # For count of up to 19 elements, time interval has to be shorter than 2 months.
  • # Otherwise, time interval has to be shorter than 1 month.
  • # .
  • # Returns only duties accessible for logged user considering aircraft and operator
  • # privileges
  • #
  • # Arguments
  • # timeInterval:
  • # loginNidList:
  • # isRequest: If passed node will return either only requests or
  • # only actual duties.
  • #
  • # If not passed all duties will be returned.
  • dutyList(
  • timeInterval: TimeIntervalInput!,
  • loginNidList: [ApiLoginNidScalar!],
  • isRequest: Boolean
  • ): [Duty!]!
  • # Duty list created, modified or deleted after selected date (max one week until
  • # now)
  • #
  • # Arguments
  • # dateTime:
  • getModifiedDutyList(dateTime: DateTime!): DutyChanges!
  • }