Are Multiple Operations Possible?

Is it possible to run multiple operations in a single request?

I am trying however I am getting the following error:

[
 { "message": "An operation name is required" } ]

though I have operations named.
Simple example below:

query operation1 {
  ethereum(network: bsc) {transactions}
}

query operation2 {
  ethereum(network: bsc) {transactions}
}

Kind regards

1 Like

You can use Aliasing

Read this

https://bitquery.io/blog/graphql-alias-and-aggregation

2 Likes

Thank you! Use of Aliasing works!