Hello @be_Berlin!
Hmm, we can filter on a lookup field, so something must not be matching correctly. What field is the lookup targeting? Is it possible you’re matching a different property against Parameter > id?
By the way, another question (maybe related)? What is the difference between “Index” (marked red) and “Id” (marked green in screenshot)?
The Index is the current iteration index, whereas the Id is the unique identifier of that record. For example, with data such as:
[
{
"id": 42,
"name": "be_Berlin"
},
{
"id": 123,
"name": "picklepete"
}
]
If we were to iterate on that (with a repeat, or table element):
- Iteration 1
- Index: 0
- Id: 42
- Iteration 2
- Index: 1
- Id: 123
The Index isn’t always useful, but it can be if you want to know in a repeat/table element which iteration you’re currently cycling through.
I hope this helps!
Cheers,
Peter Evans