Make Transactions in Block GraphQL queries be paginated
Author: MitchTurnerCreated Jan 7, 2026Updated Apr 14, 2026
Ideally. We want the query to be more like this:
query {
block(height: "46203297") {
transactions(first: 100, after: 10) {
id
}
}
}
Where the default is just the first 100 to minimize the breaking change.
Source: FuelLabs/fuel-core