This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Example Use Cases
Akhila Raju edited this page Jul 19, 2018
·
15 revisions
Get the amount of gas expended in each transaction sent from a certain address in block 5000000.
Fetch all transactions from block 5000000 that have input data, and for those that can be decoded as token transfers, return the token symbol, sending and receiving addresses, as well as the token balance of the sending address.
{
block(number: 5000000) {
hash
transactions(filter: { withInput: true }) {
index
hash
from {
address
}
to {
address
}
decoded {
... on ERC20Transfer {
tokenContract {
symbol
}
from {
account {
address
}
tokenBalance
}
to {
account {
address
}
}
value
}
}
}
}
}
For all blocks between 5400000 and 5400005 inclusive (6 blocks), get the balance of all addresses that sent a transaction.
{
blocksRange(numberRange: [5400000, 5400005]) {
transactions {
hash
value
from {
address
balance
}
to {
address
}
}
}
}
- Top-Level Queries
- Example Use Cases
- Block Query Fields
- Account Query Fields
- Transaction Query Fields
- Log Query Fields
- Decoded Transaction Query Fields
- ENS plugin: resolving names into addresses