OBJECT
AutoRefill
Contains all auto refill profiles, will have auto refill metadata in the future.
link GraphQL Schema definition
1 type AutoRefill { 2 3 # Lists actions to execute during an auto refill setup session. 4 (: PaymentProvider!): [CheckoutAction!]! 5 6 # The list of auto refill profiles. 7 : [AutoRefillProfile!]! 8 9 # A list of active xsolla payment methods that a user has available. This field is 10 # intended to be replaced by the User.PaymentMethods query. 11 : [PaymentMethod!] 12 13 }