OBJECT

CrewPanelPositioningMutationSection

link GraphQL Schema definition

  • type CrewPanelPositioningMutationSection {
  • # Requires access to resource GRAPHQL_POSITIONING_EDIT.
  • # Execution is not allowed during publishing.
  • # If in drafts mode, requires operator to turn that feature on globally in
  • # settings.
  • #
  • # Arguments
  • # data:
  • # timezoneToggle:
  • # isInDraftMode:
  • create(
  • data: CrewPanelPositioningInput!,
  • timezoneToggle: TimeZoneToggle!,
  • isInDraftMode: Boolean!
  • ): CrewPanelPositioning!
  • # Requires access to resource GRAPHQL_POSITIONING_EDIT.
  • # Execution is not allowed during publishing.
  • # If in drafts mode, requires operator to turn that feature on globally in
  • # settings.
  • #
  • # Arguments
  • # positioningNid:
  • # data:
  • # timezoneToggle:
  • # isInDraftMode:
  • update(
  • positioningNid: TrNid!,
  • data: CrewPanelPositioningInput!,
  • timezoneToggle: TimeZoneToggle!,
  • isInDraftMode: Boolean!
  • ): CrewPanelPositioning!
  • # Requires access to resource GRAPHQL_POSITIONING_EDIT.
  • # Execution is not allowed during publishing.
  • # If in drafts mode, requires operator to turn that feature on globally in
  • # settings.
  • #
  • # Arguments
  • # positioningNid:
  • # isInDraftMode:
  • delete(positioningNid: TrNid!, isInDraftMode: Boolean!): Boolean!
  • # Requires access to resource GRAPHQL_POSITIONING_EDIT.
  • # Execution is not allowed during publishing.
  • # If in drafts mode, requires operator to turn that feature on globally in
  • # settings.
  • #
  • # Arguments
  • # crewRecordList:
  • # isInDraftMode:
  • deleteFromPositioning(
  • crewRecordList: [CrewPanelDeleteCrewRecord!],
  • isInDraftMode: Boolean!
  • ): Boolean!
  • }