OBJECT

SubscriptionGifting

A parent field for grouping the different types of gift subscriptions.

link GraphQL Schema definition

1type SubscriptionGifting {
2
3# Offers and associated metadata for purchasing community gift subscriptions.
4community: [SubscriptionCommunityGifting!]
5
6# Offers for purchasing a gift subscription to the given user.
7# This will prefer the ID if both login and ID are provided.
8# If neither are provided, this will return null.
9standard(recipientID: ID, recipientLogin: String): [SubscriptionStandardGifting!]
10
11}