GraphQL INPUT_OBJECT
UpdateMvtCampaignInput
Input for update MVT campaign.
link Definition
- input UpdateMvtCampaignInput {
- # Unique ID of the MVT campaign.
- : Int!
- # Name of the MVT campaign.
- : String
- # Set to false if the MVT campaign should not be active.
- : Boolean
- # Identifier of the MVT campaign.
- : String
- # The candidates which should be added to the MVT campaign.
- : [CreateMvtCampaignCandidateInput!]
- # The IDs of the candidates which should be removed from the MVT campaign.
- : [Int!]
- # The candidates of the MVT campaign which should be updated.
- : [UpdateMvtCampaignCandidateInput!]
- }