Multiple queries graphql

I see that DGraph GraphQL supports multiple mutations in one call, but does it support multiple queries? There was nothing about it in the docs.

I was looking at the graphql specs to see if it is not supported in graphql, and then my head exploded since I have no idea what I’m looking for…

Thanks,

J

Yes it does. Put them inside a single operation and they will run in parallel, but if they are separate operations then you must define which operation to run. You can only run one operation per request per spec, but each operation can contain multiple queries