Synthetixio / synthetix-subgraph

All sources for the handful of Synthetix subgraphs indexed by The Graph
https://docs.synthetix.io/historical-data/#subgraphs
MIT License
62 stars 63 forks source link

Null value resolved for non-null field `account` in synthExchanges query #176

Open marcinja opened 2 years ago

marcinja commented 2 years ago

Running this query in the playground

{

  synthExchanges(
    first: 100,
    orderBy:id,
    where:{
          id_gt:"0x0b2356f3c53f2051bb3570cb8c7c8044f13a824054567962cd177481906143cc-382",
          timestamp_gt: "1622530800",
          timestamp_lt:"1641024000"
    }
  ) {
    account{
      id
    }
  }
}

Gives the error:

{
  "errors": [
    {
      "locations": [
        {
          "column": 5,
          "line": 12
        }
      ],
      "message": "Null value resolved for non-null field `account`"
    }
  ]
}