Alokai

ProductPreOrder

PreOrder Product

type ProductPreOrder = {
  __typename?: "ProductPreOrder"; /** A few words telling the customer how long it will normally take to ship this product, such as 'Usually ships in 24 hours'. */
  description: Scalars["String"]; /** The message to be shown in the store when a product is put into the pre-order availability state, e.g. "Expected release date is %%DATE%%" */
  message?: Maybe<Scalars["String"]>; /** The availability state of the product. */
  status: ProductAvailabilityStatus; /** Product release date */
  willBeReleasedAt?: Maybe<DateTimeExtended>;
} & ProductAvailability$1;