The equivalent in SQL would be this:
SELECT * FROM Jobs WHERE uid=:uid AND status=:active
In firebase I have this so far:
var myJobs = jobs.orderByChild('uid').equalTo(userID);
I need to also filter by status, I was wondering what the best way to do that is?