Count Queries in GraphQL

That’s awesome.

But I can’t count Posts that have childs that have certain properties, correct?
Like:

getUser(id: $userId) {
   postsAggregate(filter: {
      statistics: {
         likes: {gt: 10}
      }
   }) {
      count
   }
}

By the way, thank you for answering all this stuff while no documentation is available!

1 Like