Transactions
Transactions contains all blockchain transactions
For example, the following gets all transactions related to a specific transaction hash (Note: a hash can happen multiple times, to ensure you get the right one you have to check the block_height as well).
query Transactions {
transactions (
hashes: ["000B1766A13ABE292D7CB861E9BA977E3C4E8B73F15A9F7CB01243FBE3963213"]
sortBy: BLOCK_HEIGHT_DESC
) {
edges {
node {
hash
blockHeight
}
}
}
}