Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update metaphysics schema #6792

Merged
merged 1 commit into from
Dec 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions data/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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!
}
Expand Down