hello I have a question in the FAQ area it says ``...
# prisma-whats-new
j
hello I have a question in the FAQ area it says
Copy code
When you submit multiple mutations or queries in the same http request they all count towards your request limit
does this mean in a query like so:
Copy code
{
  post(id:"123") {
    id
    title
    comments {
        id
        comment
    }
  }
}
it will count as 2 queries? since it's fetching the post and the comments of the post?