GraphQL INPUT_OBJECT

UpdateMvtCampaignInput

Input for update MVT campaign.

link Definition

  • input UpdateMvtCampaignInput {
  • # Unique ID of the MVT campaign.
  • id: Int!
  • # Name of the MVT campaign.
  • name: String
  • # Set to false if the MVT campaign should not be active.
  • isActive: Boolean
  • # Identifier of the MVT campaign.
  • identifier: String
  • # The candidates which should be added to the MVT campaign.
  • createCandidates: [CreateMvtCampaignCandidateInput!]
  • # The IDs of the candidates which should be removed from the MVT campaign.
  • deleteCandidateIds: [Int!]
  • # The candidates of the MVT campaign which should be updated.
  • updateCandidates: [UpdateMvtCampaignCandidateInput!]
  • }

link Required by