# BitQuery not parsing events that have a struct as among it's argument

**URL:** https://community.bitquery.io/t/bitquery-not-parsing-events-that-have-a-struct-as-among-its-argument/2149
**Category:** GraphQL API
**Created:** [November 10, 2024, 4:20am UTC](https://community.bitquery.io/t/bitquery-not-parsing-events-that-have-a-struct-as-among-its-argument/2149 "2024-11-10T04:20:17Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Poly112](https://avatars.discourse-cdn.com/v4/letter/p/91b2a8/32.png) [@Poly112](https://community.bitquery.io/u/Poly112)
#### Post date: [November 10, 2024, 4:20am UTC](https://community.bitquery.io/t/bitquery-not-parsing-events-that-have-a-struct-as-among-its-argument/2149/1 "2024-11-10T04:20:17Z")

</div>

```auto
query MyQuery {
  EVM(network: arbitrum, dataset: realtime) {
    Events(
      where: {Transaction: {Hash: {is: "0xc5e0fcb248e3aacd952fd4580f714469f58a4575431d1b81557a80b47d1c9dc9"}}}
    ) {
      Arguments {
        Index
        Name
        Type
        Value {
          ... on EVM_ABI_String_Value_Arg {
            string
          }
          ... on EVM_ABI_Integer_Value_Arg {
            integer
          }
          ... on EVM_ABI_Address_Value_Arg {
            address
          }
          ... on EVM_ABI_BigInt_Value_Arg {
            bigInteger
          }
          ... on EVM_ABI_Bytes_Value_Arg {
            hex
          }
          ... on EVM_ABI_Boolean_Value_Arg {
            bool
          }
        }
      }
      Log {
        SmartContract
        Signature {
          Name
          SignatureHash
          Signature
        }
      }
    }
  }
}

```

If you run the above query, you will notice that any event that contains a struct as one of it’s argument returns null. Please how to I overcome this?

---

<div class="post-metadata">

### Author: ![Divya](https://avatars.discourse-cdn.com/v4/letter/d/13edae/32.png) [@Divya](https://community.bitquery.io/u/Divya)
#### Post date: [November 11, 2024, 3:13pm UTC](https://community.bitquery.io/t/bitquery-not-parsing-events-that-have-a-struct-as-among-its-argument/2149/2 "2024-11-11T15:13:07Z")

</div>

I can see the arguments, set `EVM(network: arbitrum, dataset: combined)`

 ![image](https://us1.discourse-cdn.com/flex016/uploads/bitquery/original/1X/9e5dbc0529b4a554026acd9a098f501238f5992b.png)
