Faceted filters in Mongo DB with for products with multiple options
问题 we are trying to create call to MangoDB to receive all possible filters for products. I will try to create example of our products First product is Adidas Shoes which have two options to select - colour and size. But for different colours you have different sizes. { id: 1 name: "Adidas Shoes", filters: [ [ { code: "brand", value: "Adidas" }, { code: "colour", value: "white" }, { code: "size", value: 41 } ], [ { code: "brand", value: "Adidas" }, { code: "colour", value: "white" }, { code: