Firebase Realtime Database equal_to() method gets the whole document instead of the parent only

I have this structure: -User: -user1: -name : cycy -email: cycy@test.com What I intend to do is know what parent does the input email contains. for example if my input email is cycy@test.com, I should be able to output "user1". Here is my code: hey = db.child("User").order_by_child("email").equal_to("cycy@test.com").get() print(hey.val()) My problem with this code is that… Read More Firebase Realtime Database equal_to() method gets the whole document instead of the parent only