Hi Sebastian,
I have recently asked about a feature about sending selected data fields to Algolia.
It works fine to select data fields type of string. But I can’t make it work with type array such as this:
images: {
iv: [
{
url: "https://external-website.com/sampleImage.jpg"
}
]
}
I have tried to write something like this, but it doesn’t work:
"images": "${event.data.images ? event.data.images.iv[0].url : ''}"
Do you have any other solutions?
Thanks in advanced.