Last active
October 25, 2019 03:59
-
-
Save OlegIlyenko/c0783869e5eaa7a6f4c84147ba06d83b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input DiscountCodeUpdateAction { | |
setName: SetDiscountCodeName | |
setDescription: SetDiscountCodeDescription | |
setCartPredicate: SetDiscountCodeCartPredicate | |
setCustomType: SetDiscountCodeCustomType | |
setCustomField: SetDiscountCodeCustomField | |
# ... | |
} | |
input SetDiscountCodeName { | |
name: [LocalizedStringInput!] | |
} | |
input SetDiscountCodeDescription { | |
description: [LocalizedStringInput!] | |
} | |
input SetDiscountCodeCartPredicate { | |
cartPredicate: String | |
} | |
input SetDiscountCodeCustomType { | |
typeId: String | |
typeKey: String | |
type: ResourceIdentifierInput | |
fields: [CustomFieldInput!] | |
} | |
input SetDiscountCodeCustomField { | |
name: String! | |
value: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment