mission-control-indexer icon indicating copy to clipboard operation
mission-control-indexer copied to clipboard

Improvement: Explorer: Allow to search for participants or increase number of results returned

Open nmeilick opened this issue 5 years ago • 3 comments

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).

nmeilick avatar Sep 27 '20 20:09 nmeilick

Dupe of https://github.com/graphprotocol/mission-control-indexer/issues/110

trader-payne avatar Sep 28 '20 03:09 trader-payne

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?

nenadjaja avatar Oct 02 '20 02:10 nenadjaja

I think we can if we go:

graphAccountName(orderby: name) {
   graphAccount{
           indexer{
                   id
          }
   }
}

davekay100 avatar Oct 04 '20 14:10 davekay100