How to delete certain collection from array

I am having trouble deleting a collection from array on the basis of “number” value.
Anyone could give me a hint?
Zrzut ekranu 2023-12-4 o 08.03.31

Hello Kamil,

Could you add the JSON file corresponding to your example?
It will be useful for experimentation.

BR,

PBI

2 Likes

so there is no universal rule to archieve it?

this is an array:
“blf array”: [
{
“number”: “45104010002”,
“title”: “Sławomir - ŁH”
},
{
“number”: “45104010027”,
“title”: “Sławomir - ŁM”
}
]

And I want to delete one of the entries, I have a “number” value of the collection I want to remove

You can use an Iterator and Array Aggregator, with a filter in-between.

Filter

Screenshot_2023-12-04_231206

2 Likes