I'm trying to retrieve all car data where name is golf but i get no results:
This is my query:
ref.child("auto").queryOrdered(byChild: "name").queryEqual(toValue: "golf").observeSingleEvent(of: .value, with: { (snapshot) in
my Firebase structure is:
-auto
--luhrvuuigvuilthuv
---tgrebytfbyuhbyujvyjb
----name:golf
----age: 2
----color: blue
---funjityvniyyuhntyity
----name:golf
----age: 2
----color: blue
Where is the problem? Thnx in advance