Since GraphQL provides a single API endpoint to do API queries and there could a situation where we have written multiple Graphql queries in our frontend application (which provides data to the different components of our application) and these Graph QL queries should run in parallel.
Does GraphQL combine these queries into one and make a single API request or does it make multiple API requests for multiple queries?
Note: Not using any library yet. Just a random question that came into my mind while going through the docs.