ocean-subgraph icon indicating copy to clipboard operation
ocean-subgraph copied to clipboard

tokenBalancesOwned isn't updated

Open jamiehewitt15 opened this issue 1 year ago • 1 comments

Describe the bug tokenBalancesOwned isn't updated anywhere.

Can also verify this with the following query:

{
  users(first: 1000){
    tokenBalancesOwned {
      id
      token {
        id
      }
      value
    }
  }
}

The response is the following:

{
  "data": {
    "users": [
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },
      {
        "tokenBalancesOwned": []
      },

      ...

     {
        "tokenBalancesOwned": []
      }
    ]
  }
}

jamiehewitt15 avatar Jul 25 '22 13:07 jamiehewitt15

Because it was never implemented. It was added as an idea and i forgot to add TODO to it 😁

mihaisc avatar Jul 25 '22 15:07 mihaisc