Sort graphql aggregate result

Hey there! I am learning to love strapi ft. graphql and I am pretty succesful with that :stuck_out_tongue:
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 :slight_smile:

      postsConnection{
    	groupBy {
    	  CreatedBy {
    		key
    		connection {
    		  aggregate {
    			sum {
    			  Votes
    			}
    		  }
    		}
    	  }
    	}
      }
    }```
hope this is the right place for that kind of question. Thanks in advanced!