I have the following Realtime Database structure

Now I want to query the aeds by their owner so that the query returns all aeds (with children) with the matching owner id.
But somehow I am not capable to do it although I feel it must be easy. Here is the code I have:
var aedRef = dbRef.ref().child("aeds")
var query = aedRef.orderByChild("owner").equalTo(userID);
console.log(query);
I feel that it should be easy but somehow I can't get it working. All I get is this:
e {repo: e, path: e, Me: e, Le: true}
Any help is greatly appreciated