Parametr "last" in transactionByOwner query does not work

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

Thanks for reporting it, I will make sure that it gets into the team’s attention

The team has confirmed the bug. It’ll be fixed soon, thanks :slight_smile:

thank you too, for quick answer

1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.