For example, I have this tree:
How to use query to get for example just the "meeting_1" by the user?
I tried this code (The names just for this example):
final DatabaseReference mDatabase = getDatabaseReference(ConstantNames.MEETINGS_PATH).child ( TeamID );
Query query = mDatabase.orderByChild("PublicTo").equalTo("User_1");
This code not working. The value of DataSnapshot is "null"