I'm working on a project which needs to select data from Firebase on multiple fields.
I have a firebase database like this:
[{
date: "2016-01-29"
done: false
task: "hello world"
},
{
date: "2016-01-29"
done: false
task: "hello world"
}]
Now I want to query all data with date is today and done is true.
I look around google for a while but there's nothing work. Is there any one can please help me to figure this out?