OBJECT

BigBoxDeliverySlot

link GraphQL Schema definition

  • type BigBoxDeliverySlot {
  • # Slot code (referencing BigBigDeliverySlotType)
  • code: String!
  • # Date (ISO_LOCAL_DATE, YYYY-MM-DD)
  • date: String!
  • # Reference to the slot code and date.
  • # This is what you send to selectbigboxdelivery
  • # (It is formed by concatenating the values for
  • # code and date, separated with am @ sign.)
  • slot: String!
  • # Whether it's available, or else reserved
  • available: Boolean!
  • # Whether this slot is currently selected for this order session
  • selected: Boolean
  • # A base price amount for this slot
  • base_price: Price
  • # An extra-item price for this slot
  • extra_item_price: Price
  • # A price amount for this slot
  • price: Price
  • }