Get Bid List by Round Number
Retrieve all confirmed bids for a specific auction round by round number
Get Bid List by Round Number
Retrieve all confirmed bids for a specific auction round using its number
This query returns only confirmed bids. Unconfirmed or pending bids are not included in the results.
Query
Schema
getBidListByRound(
round: Int!
): [Bid]Parameters
roundRequiredInt!Return Value
The query returns an array of Bid objects that are confirmed for the specified round number
Round Number vs Round ID
Sequential integer identifier
Unique string identifier
Example
query {
getBidListByRound(round: 12) {
userId
roundId
tokenAmount
totalPrice
tokenPrice
tempTokenAmount
tempTokenPrice
delta
pendingIncrease
holdings {
key
value {
crypto
usd
}
}
payType
cryptoType
placedAt
updatedAt
status
}
}Response Example
{
"data": {
"getBidListByRound": [
{
"userId": "user123",
"roundId": "round12",
"tokenAmount": 100.0,
"totalPrice": 50.0,
"tokenPrice": 0.5,
"tempTokenAmount": 0,
"tempTokenPrice": 0,
"delta": 0,
"pendingIncrease": false,
"holdings": [
{
"key": "BTC",
"value": {
"crypto": 0.0012,
"usd": 50.0
}
}
],
"payType": 2,
"cryptoType": "BTC",
"placedAt": 1625247600000.0,
"updatedAt": 1625334000000.0,
"status": 0
},
{
"userId": "user456",
"roundId": "round12",
"tokenAmount": 200.0,
"totalPrice": 100.0,
"tokenPrice": 0.5,
"tempTokenAmount": 0,
"tempTokenPrice": 0,
"delta": 0,
"pendingIncrease": false,
"holdings": [
{
"key": "WALLET",
"value": {
"crypto": 0,
"usd": 100.0
}
}
],
"payType": 3,
"cryptoType": null,
"placedAt": 1625251200000.0,
"updatedAt": 1625337600000.0,
"status": 0
}
]
}
}Use Cases
Display confirmed bids on a leaderboard for a specific round
Calculate total participation and bid values for a round
Analyze confirmed competitive bids in a specific round
Review confirmed bid patterns from past rounds
Track total confirmed bid volume per round
Show confirmed bids publicly for transparency
Confirmed vs All Bids
Bids that have been placed and confirmed for the specified round
Pending bids that are not yet confirmed are filtered out
Use this query for public-facing features where only verified, confirmed bids should be displayed. For admin purposes requiring all bids, use getBidListById instead.