From f851233a5e062dfb9558709ffa6b8ad25ca22273 Mon Sep 17 00:00:00 2001 From: artsyit Date: Fri, 11 Dec 2020 04:52:45 +0000 Subject: [PATCH] Update metaphysics schema --- data/schema.graphql | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/data/schema.graphql b/data/schema.graphql index 8391557ec7b..ffcd1d4c595 100644 --- a/data/schema.graphql +++ b/data/schema.graphql @@ -1876,14 +1876,16 @@ type AuctionsLotStandingEdge { # The state of a lot type AuctionsLotState { - # total number of bids placed on the lot + # total number of actual bids placed by users on the lot bidCount: Int! + + # current high bid recognized on the live auction floor floorSellingPrice: Money # selling price, in minor unit, on the live auction floor floorSellingPriceCents: Long - # The bidder currently winning the online portion of the auction + # The bidder currently winning the live floor portion of the auction floorWinningBidder: AuctionsBidder # The Gravity Lot ID. @@ -1905,6 +1907,12 @@ type AuctionsLotState { # The Gravity Sale ID. saleId: ID! + # current high bid + sellingPrice: Money + + # current bid amount in minor unit, whether reserve is met or not + sellingPriceCents: Long! + # Whether the lot is sold, for sale or passed soldStatus: AuctionsSoldStatus! }