This repository was archived by the owner on Jul 1, 2024. It is now read-only.
generated from subsquid-labs/squid-substrate-template
-
Notifications
You must be signed in to change notification settings - Fork 11
🔧 series floorprice #116
Open
roiLeo
wants to merge
3
commits into
kodadot:main
Choose a base branch
from
roiLeo:fix/series/floorprice
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
🔧 series floorprice #116
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Nov 4, 2022
Closed
soo? |
long story short, series query should be reworked. |
UPDATE: query MyQuery {
series(limit: 5, orderBy: floorPrice_DESC) {
id
floorPrice
highestSale
}
} results: {
"data": {
"series": [
{
"id": "3132385849",
"floorPrice": null,
"highestSale": "150000000000"
},
{
"id": "2773267381",
"floorPrice": null,
"highestSale": "10000000000"
},
{
"id": "3033790537",
"floorPrice": null,
"highestSale": "1000000000000"
},
{
"id": "331660682",
"floorPrice": null,
"highestSale": "542476800000"
},
{
"id": "185770742",
"floorPrice": null,
"highestSale": "330000000000"
}
]
}
} localhost {
"data": {
"series": [
{
"id": "488018416",
"floorPrice": "100000000000000",
"highestSale": "100000000000000"
},
{
"id": "807893860",
"floorPrice": "1000000000000",
"highestSale": "1000000000000"
},
{
"id": "3033790537",
"floorPrice": "1000000000000",
"highestSale": "1000000000000000000"
},
{
"id": "3424749042",
"floorPrice": "1000000000000",
"highestSale": "10000000000000"
},
{
"id": "756873665",
"floorPrice": "1000000000000",
"highestSale": "1000000000000"
}
]
}
} I think we can beta test this one on 004 |
vikiival
approved these changes
Mar 6, 2023
Merged
from #162 (comment)
edit: What 's up: INNER JOIN (
SELECT *
FROM event e
WHERE e.interaction = 'BUY'
OR e.interaction = 'LIST'
GROUP BY e.nft_id, e.id
ORDER BY e.timestamp
LIMIT 0 OFFSET 1
) e on ne.id = e.nft_id
${computedDateRange} |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
on series:
floor_price
will always be null since it's based onnft.price
frome.interaction = 'BUY'
handleTokenBuy
price is set toBigInt(0)
floor_price
should be based on laste.interaction = 'LIST'
PR type
What's new?
Before submitting Pull Request, please make sure:
Optional
Screenshot