Query All Arweave Transactions
Query GraphQL for all Arweave Transactions data iteratively
You can query for all transactions on GraphQL endpoint using the method thats described here.
Basic Syntax
The function that we will be using is queryAllTransactionsGQL
. For implementation details, see below.
Input Parameters
You must supply queryAllTransactionsGQL
with two inputs.
QueryString:
string
- A valid GraphQL query string with thefirst
filter.Options:
object
- An options object.gateway:
string
- Gateway url likearweave.net
filters:
object
- Filters object likefirst: 100
.
Returned Data
The expected response will be a list of GraphQLEdge
Last updated