Given this database structure in Firebase Realtime database,
I would like to get list of quotes based on a specific category.
If user selects "Motivation" then all quotes under that category should be returned. For e.g. in the above structure, quotes ID: 1,2,5
are under category "Motivation" so if a user selects motivation (from a dropdown in UI) then only the quotes ID: 1,2,5 should be returned in the snapshot.
How to form a firebase query such that only 1,2,5 are returned in the snapshot.
Thanks