GraphQL OBJECT
MvtCampaign
Multivariate testing campaign.
link Definition
- type MvtCampaign {
 - #   Client who offers the multivariate testing campaign.
 - : Client 
 - #   Date and time when the mvt campaign was created.
 - : DateTime! 
 - #   User who created the mvt campaign.
 - : UserAccount! 
 - #   Unique ID of the mvt campaign.
 - : Int! 
 - #   Date and time when the last edit occurred.
 - : DateTime! 
 - #   User who last modified the mvt campaign.
 - : UserAccount 
 - #   Internal name of the mvt campaign.
 - : String 
 - #   Flag that states if the mvt campaign is active.
 - : Boolean 
 - #   unique identifier to be added to the end of the display URL.
 - : String 
 - #   Display url of the mvt campaign.
 - : String 
 - #   Candidates included in the mvt campaign.
 - # 
 - # Arguments
 - #   isActive: Filters for active or inactive candidates. If filter 
 - #   is not set or set to null, all candidates are returned.
 - (: Boolean): [MvtCampaignCandidate]! 
 - #   Flag that states if the mvt campaign is an AB test
 - : Boolean 
 - #   How much revenue the mvt campaign has generated for the client.
 - : ClientSalesRevenueStatistics 
 - #   How many orders for the mvt campaign have been placed.
 - : OrderStatistics 
 - #   How many licenses for the mvt campaign the client has sold.
 - : LicenseStatistics 
 - #   How many sessions for the mvt campaign were made.
 - : SessionsStatistics 
 - #   Conversion rate of the mvt campaign.
 - : ConversionRateStatistics 
 - }