Created
January 16, 2024 13:58
-
-
Save trevorbernard/eb2e0b5a8e164c2f7e1234d9894e6b6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query TransactionsQuery($limit: Int = 10, $sort_by: TransactionSortByInput!, $query: TransactionQueryInput!) { | |
transactions(limit: $limit, sortBy: $sort_by, query: $query ) { | |
blockHeight | |
canonical | |
amount | |
fee | |
kind | |
id | |
to | |
from | |
nonce | |
memo | |
hash | |
block { | |
dateTime | |
stateHash | |
} | |
receiver { | |
publicKey | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment