OBJECT
Offer
link GraphQL Schema definition
1 type Offer { 2 3 # Unique identifier for the offer 4 : ID! 5 6 # The time at which the offer becomes available 7 : Time 8 9 # The time at which the offer is no nonger available 10 : Time 11 12 # An object containing information about a customer's relation to the offer 13 : OfferSelfConnection 14 15 }