mission-control-indexer
mission-control-indexer copied to clipboard
Improvement: Explorer: Allow to search for participants or increase number of results returned
Currently, there's no build-in search for participants. As only 10 results are returned at a time, this means one often has to click "Load more" dozends of times. A search for participants would be nice, as would be an increase of results (e.g., to 50 or more).
Dupe of https://github.com/graphprotocol/mission-control-indexer/issues/110
Yep I would love to have the search there, we are aware of this issue. However, we currently have a limitation in terms of searching/filtering w nested Graphql queries, and the way our subgraph schema is laid out, it would have to be a nested query. Long story short, search by name wouldn't work. How about search by ethereum address?
I think we can if we go:
graphAccountName(orderby: name) {
graphAccount{
indexer{
id
}
}
}