Replies: 6 comments 5 replies
-
Chain/Recently listed/Most interactions/Price in fiat/respective asset Or did i get the question completely wrong 😂 |
Beta Was this translation helpful? Give feedback.
-
Can we have an idea of the solution chosen? What's the stack?
🤔 json data? |
Beta Was this translation helpful? Give feedback.
-
yup, so for the multichain search, originally there was this draft of search results/trending collection. These are the data that should be shown |
Beta Was this translation helpful? Give feedback.
-
So I managed to pushed the data into
You need to add Sample Query query findCollections {
collectionsCollection(first: 10) {
edges {
node {
name
}
}
}
} |
Beta Was this translation helpful? Give feedback.
-
So I finally iterated to the point where search can be usable to use a search you need to make request to values that you always need to provide are You have two alternatives: 1. use GET
2. use POST
additional fields that you can use for search: type SearchQuery = {
table: 'collections' | 'nfts',
select: string,
search: string,
issuer?: string,
owner?: string,
chain?: string,
limit: number,
offset: number,
} Note there is a current limit hardcoded limit 25 items I also shared the anon key for you in our discord sample request
|
Beta Was this translation helpful? Give feedback.
-
Hey,
in upcoming days I plan to build first version of #4257.
Here is my question: What kind of data would you like to see/ have in the search for easy and quick development?
cc:
@kodadot/code-review-guild
@exezbcz
Beta Was this translation helpful? Give feedback.
All reactions