I search my database in firebase using the following code:
myRef = FirebaseDatabase.getInstance().getReference("Π Π΅ΡΠ΅ΠΏΡΡ"); Query query_search = myRef.orderByChild("ΠΠ½Π³ΡΠΈΠ΄ΠΈΠ΅Π½ΡΡ").startAt("ΠΠΎΠ»ΠΎΠΊΠΎ, ΡΠ±Π»ΠΎΠΊΠΈ"); query_search.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { String value_name = dataSnapshot.child("ΠΠΌΡ").getValue(String.class); text.setText(value_name); where text is a TextView object
As a result of the code execution, I want to get the ΠΠΌΡ field of the recipe, which includes the ingredients Π―Π±Π»ΠΎΠΊΠΈ, ΠΌΠΎΠ»ΠΎΠΊΠΎ
The code is executed for the database with the following structure: 
For reasons I do not understand, after executing the code text - let, and value_name = null
How to fix it?
upd

SugarandCarrotand as a result should getCarrot Salad- Vlad Yulin