I have a Firebase array called products
that contains items like this one:
JhMIecX5K47gt0VaoQN: {
brand: "Esprit"
category: "Clothes",
gender: "Boys",
name: "Pants",
}
Is it possible to query products from this array using multiple filters with the Firebase API. For example I might want to filter by brand
and category
(all "Pants" by "Esprit"). So far I've tried ordering by child key and then limiting the start and end of this ordering, but I can't figure out how to apply more filters.
I'm using the iOS SDK.