OBJECT
Mutation
link GraphQL Schema definition
1 type Mutation { 2 3 # placeOrder allows a user to create their entitlement to the given offer/content. 4 (: PlaceOrderInput!): PlaceOrderPayload 5 6 # Creates entitlements for the current user on an offers/content 7 (: PlaceOrdersInput!): PlaceOrdersPayload 8 9 # claimPrimeOffer allows a user to create their entitlement to the given 10 # offer/content. 11 (: ClaimPrimeOfferInput!): ClaimPrimeOfferPayload 12 13 # markPrimeOffersAsSeen emits an SNS event indicating that a user has seen the 14 # given offers/content. 15 (: MarkPrimeOffersAsSeenInput!): MarkPrimeOffersAsSeenPayload 16 17 # Allows the creation of a link between an Amazon account and third-party account 18 (: CreateAccountLinkInput!): CreateAccountLinkPayload 19 20 # Link a twitch account to the logged in Amazon user. 21 (: LinkTwitchAccountInput!): LinkTwitchAccountPayload 22 23 # Unlink a twitch account from the logged in Amazon user. 24 (: UnlinkTwitchAccountInput!): UnlinkTwitchAccountPayload 25 26 # signupForPrime allows a user to sign up for Twitch Prime without requiring a 27 # twitch account to be linked. 28 : SignupForPrimePayload 29 30 # claimJourneyOffer allows a user to create their entitlement to a given journey 31 # and offer. 32 (: ClaimJourneyOfferInput!): ClaimJourneyOfferPayload 33 34 # updateNotificationSettings allows a user to be enabled or disabled for email 35 # notification 36 ( 37 : UpdateNotificationSettingsInput! 38 ): UpdateNotificationSettingsPayload 39 40 # updateTopicSubscription allows a user to be subscribed or unsubscribed 41 # notification for a specific topic 42 ( 43 : UpdateTopicSubscriptionInput! 44 ): UpdateTopicSubscriptionPayload 45 46 # Allows a user to globally unsubscribe from all Prime Gaming email notifications 47 # without logging in. 48 ( 49 : UnsubscribeFromNotificationsWithTokenInput! 50 ): UnsubscribeFromNotificationsWithTokenPayload 51 52 # Allows a user to globally subscribe to all Prime Gaming email notifications 53 # without logging in. 54 ( 55 : SubscribeToNotificationsWithTokenInput! 56 ): SubscribeToNotificationsWithTokenPayload 57 58 }
link Required by
This element is not required by anyone