graphql - creating multiple concurrent query
We can create multiple concurrent query in graphql by using the following
query {
a: blog {
id
userInput
}
b: blog {
id
userInput
}
}
And that would look something like this
We can create multiple concurrent query in graphql by using the following
Comments