ENUM

AuctionOrderField

Properties by which Auctions are ordered.

link GraphQL Schema definition

  • enum AuctionOrderField {
  • # Order auctions by the sum of bids' amounts and then by the last bid timestamp.
  • BID_AMOUNT_SUM
  • # Order auctions by the total number of bids and then by the last bid timestamp.
  • BID_COUNT
  • # Order auctions by the domain name.
  • DOMAIN_NAME
  • # Order auctions by the auction end `DateTime`.
  • ENDS_AT
  • # Order auctions by the current highest bid amount and then by timestamp.
  • HIGHEST_BID_AMOUNT
  • # Order auctions by the current highest bid timestamp.
  • HIGHEST_BID_TIMESTAMP
  • # Order auctions by id.
  • ID
  • }