Hi!
My collection contains a field ‘price’, which contains following array:
[
{
"Currency": "EUR",
"Amount": {
"Base": 59.95,
"Discount": "0%"
}
}
]
How can I apply the le() function using wixData.filter().le()? The check for the price should happen on the level of price[0].Amount.Base and not on the level of price, so it’d have to be able to do something like wixData.filter().le(“price[0].Amount.Base”,60) As Wix allows me to create objects in my collection, I suppose this should somehow be possible. Unfortunately this doesn’t seem to work? What’s the right syntax here?