OBJECT
PrimePromotion
Metadata relevant to Prime copy or marketing that needs to be scheduled.
link GraphQL Schema definition
1 type PrimePromotion { 2 3 # externalURL is a string with the destination URL. 4 : String 5 6 # id is the unique identifier for the PrimePromotion. 7 : ID! 8 9 # isExternalLink is boolean that indicates whether the text should be a link. 10 : Boolean! 11 12 # text is a string field containing the user visible text for a dynamic/changing 13 # string. 14 : String! 15 16 }