bossjapzz

Results 3 comments of bossjapzz

The most common operations are: **count, max, min**

other operations aside from: standard deviation and variance is: **avg, sum**

Another example is ordering **POSTS** by **REACTIONS** `count` ```graphql query MyQuery { GroupContent_connection(order_by: {GroupContentReactions_aggregate: {count: desc}}) { edges { node { id GroupContentReactions_aggregate { aggregate { count } } }...