Damián Crespi
04/08/2024, 3:04 PM[
{
"field": ["value1", "value2"]
},
{
"field": ["value1"]
},
{
"field": ["value1", "value2", "value3"]
}
]
I need to find the one that only contains value1
, in this case it would be the second one. I’ve read the documentation but haven’t found anything like this. Is it possible?
ThanksJason Bosco
04/09/2024, 3:39 AMJason Bosco
04/09/2024, 3:39 AMfield
into an array of space separate strings, then use string based filtering for itDamián Crespi
04/09/2024, 12:46 PM