I want to retrieve data on with this value 7hmpcTuCAYQAYRqP7RNmnegSd9r2 
But i'm getting all four objects in snapshot. I want to get parent key values which contain this key
7hmpcTuCAYQAYRqP7RNmnegSd9r2 
Need to get blue mark keys.
Here is my code
     let ref = FirebaseManager.refs.databaseRoot.child("new_ChatListMembers")
    ref.queryOrdered(byChild: (Auth.auth().currentUser?.uid)!).queryEqual(toValue: true)
    ref.observeSingleEvent(of: .value) { (snapshot) in
        print(snapshot)
    }
This code return four objects instead of two.Please help me how i can get specific data. Thanks

 
    