for example i use
query {
transactionsByOwner(owner: "0x5502f46f90c3c68c85489b1f57ae6146c81e8549daf408574e3a9a0bb80c4ba0", first: 10) {
nodes {
id
}
}
}
and have 10 tx in output, but if i use “last”
query {
transactionsByOwner(owner: "0x5502f46f90c3c68c85489b1f57ae6146c81e8549daf408574e3a9a0bb80c4ba0", last: 10) {
nodes {
id
}
}
}
i will have:
{
"data": {
"transactionsByOwner": {
"nodes": []
}
}
}
I saw that you corrected this in RocksDB (backward iteration), but not in graphQL