-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
Goal
Mark CollectionsByVolumeQuery and CollectionsByMarketCapQuery as deprecated with a note to use collectionTrends.
Description
query CollectionsByVolumeQuery(
$term: String
$startDate: DateTimeUtc!
$endDate: DateTimeUtc!
$orderDirection: OrderDirection!
$limit: Int!
$offset: Int!
) {
collectionsFeaturedByVolume(
term: $term
startDate: $startDate
endDate: $endDate
orderDirection: $orderDirection
limit: $limit
offset: $offset
) {
floorPrice
nftCount
volumeTotal
holderCount
nft {
address
mintAddress
name
image
}
}
}
query CollectionsByMarketCapQuery(
$term: String
$startDate: DateTimeUtc!
$endDate: DateTimeUtc!
$orderDirection: OrderDirection!
$limit: Int!
$offset: Int!
) {
collectionsFeaturedByMarketCap(
term: $term
startDate: $startDate
endDate: $endDate
orderDirection: $orderDirection
limit: $limit
offset: $offset
) {
floorPrice
nftCount
volumeTotal
holderCount
nft {
address
mintAddress
name
image
}
}
}
Metadata
Metadata
Assignees
Labels
No labels