OBJECT
BitsProduct
A product for bits that contains all information about a product, except for the pricing.
link GraphQL Schema definition
1 type BitsProduct { 2 3 # The amount of bits the product is for. 4 : Int! 5 6 # The product ID. 7 : ID! 8 9 # The maximum quantity a user can purchase at once. 10 : Int! 11 12 # The offer id associated with this product's id (if available). 13 : ID 14 15 # A field that contains promotional information about the product. 16 : BitsProductPromotion 17 18 # The relation of the product to the user. 19 : BitsProductSelfEdge 20 21 # The product type, which right now is only "purchase". 22 : BitsProductType! 23 24 }