SCALAR
Boolean
The Boolean
scalar type represents true
or false
.
link GraphQL Schema definition
1 scalar Boolean
link Required by
- ClaimJourneyOfferInput
- ClaimPrimeOfferInput
- CreateAccountLinkInputInformation to create a link between an Amazon account and a third-party account
- CurrentUserSigned in customers information.
- GameSelfConnectionInformation about a customers relationship to a game
- Item
- JourneyAn object containing grouped offers available based on time windows or eligibility
- JourneyOfferAn object containing information about an offer in a Journey
- JourneyOfferMarketplaceRestrictionAn object containing information about an offer's marketplace restrictions
- JourneyOfferOtherClaimAn object containing information about another offer claim that may be blocking the current offer's availability
- JourneyOfferSelfConnectionAn object containing information about a Journey Offer for the current user
- NotificationPreferencesUser's notification preferences on the notification setting page
- NotificationSubscriptionTopicSelfConnectionAn object containing the relationship between the current user and the topic
- OfferEligibilityContains information about a user's ability to claim an offer
- OfferOrderInformationInformation about a user's order of an offer.
- OfferSelfConnection
- PrimeOfferA digital entitlement that is displayed to a user.
- Query
- UnsubscribeFromNotificationsWithTokenPayloadOutput object to unsubscribe from notifications with a token
- UpdateNotificationSettingsInputInput object to update the user's notification settings
- UpdateNotificationSettingsPayloadOutput object to update the user's notification settings
- UpdateTopicSubscriptionInputInput object to subscribe/unsubscribe notification for a specific topic
- UserPreferencesUser preferences across Amazon and Twitch Prime
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.