OBJECT

Offer

link GraphQL Schema definition

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

link Required by