When I try to extract data according to block numbers using the following:
options: {desc: “block.height”, limit: 10000, offset: 0}
And specify block height using the following:
height: {gteq: 100, lteq: 101}
The data API returns list block number 101 first, after which is the data from block 100.
Is there a way to reverse this order, so that I can see data from block 100 first, then 101?