ENUM

AuctionState

The auction state is based on its launch.

link GraphQL Schema definition

  • enum AuctionState {
  • # The auction is in progress, and users can make a bid.
  • IN_PROGRESS
  • # The auction has its winner who can settle it within a predefined period.
  • CAN_BE_SETTLED
  • # The auction has been settled by its winner.
  • SETTLED
  • # The auction has not been settled by its winner within a predefined period.
  • SETTLEMENT_EXPIRED
  • }