Skip to main content

PromotionRuleCreateInput

No description

input PromotionRuleCreateInput {
name: String
description: JSON
cataloguePredicate: CataloguePredicateInput
orderPredicate: OrderPredicateInput
rewardValueType: RewardValueTypeEnum
rewardValue: PositiveDecimal
rewardType: RewardTypeEnum
channels: [ID!]
gifts: [ID!]
promotion: ID!
}

Fields

PromotionRuleCreateInput.name ● String scalar miscellaneous

Promotion rule name.

PromotionRuleCreateInput.description ● JSON scalar miscellaneous

Promotion rule description.

PromotionRuleCreateInput.cataloguePredicate ● CataloguePredicateInput input discounts

Defines the conditions on the catalogue level that must be met for the reward to be applied.

PromotionRuleCreateInput.orderPredicate ● OrderPredicateInput input discounts

Defines the conditions on the checkout/draft order level that must be met for the reward to be applied.

Added in Saleor 3.19
This API is currently in Feature Preview and can be subject to changes at later point.

PromotionRuleCreateInput.rewardValueType ● RewardValueTypeEnum enum discounts

Defines the promotion rule reward value type. Must be provided together with reward value.

PromotionRuleCreateInput.rewardValue ● PositiveDecimal scalar miscellaneous

Defines the discount value. Required when catalogue predicate is provided.

PromotionRuleCreateInput.rewardType ● RewardTypeEnum enum discounts

Defines the reward type of the promotion rule.

Added in Saleor 3.19
This API is currently in Feature Preview and can be subject to changes at later point.

PromotionRuleCreateInput.channels ● [ID!] list scalar miscellaneous

List of channel ids to which the rule should apply to.

PromotionRuleCreateInput.gifts ● [ID!] list scalar miscellaneous

Product variant IDs available as a gift to choose.

Added in Saleor 3.19
This API is currently in Feature Preview and can be subject to changes at later point.

PromotionRuleCreateInput.promotion ● ID! non-null scalar miscellaneous

The ID of the promotion that rule belongs to.

Member Of

promotionRuleCreate mutation