Hey there! I am learning to love strapi ft. graphql and I am pretty succesful with that
But one thing I really dont know how to do without customization of the api:
I would like to sort by an aggregate of a “object_connection” My code is the following & please tell me I can sort by sum.Votes
postsConnection{
groupBy {
CreatedBy {
key
connection {
aggregate {
sum {
Votes
}
}
}
}
}
}
}```
hope this is the right place for that kind of question. Thanks in advanced!