Is there a Count for GraphQL? I used the DQL one, but i need one for GraphQL as well?

Use the aggregate queries. Something like:

query {
  aggregateMyType {
    count
  }
}

I think this was added in 20.07 if I remember correctly. So anything you read dated prior to July 2020 will not reflect that counts are now available.

2 Likes