We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What would you think about adding order by value here https://github.com/ensdomains/reclaim/blob/master/packages/react-app/src/App.js#L41 ?
Most of the time I think people will want to reclaim the highest value deeds first and it's hard to find them with the 100 limit on domains.
Based on https://thegraph.com/docs/developer/graphql-api#example I guess the new line would be:
deeds(orderBy: value, orderDirection: desc) {
The text was updated successfully, but these errors were encountered:
query manyTokens($lastID: String) {
tokens(first: 1000, where: { id_gt: $lastID }) {
id
owner
}
Sorry, something went wrong.
No branches or pull requests
What would you think about adding order by value here https://github.com/ensdomains/reclaim/blob/master/packages/react-app/src/App.js#L41 ?
Most of the time I think people will want to reclaim the highest value deeds first and it's hard to find them with the 100 limit on domains.
Based on https://thegraph.com/docs/developer/graphql-api#example I guess the new line would be:
deeds(orderBy: value, orderDirection: desc) {
The text was updated successfully, but these errors were encountered: