The goal is to select the relevant item from a collection based on the page id. It’s a very basic id = param filter. This is using the official Supabase data connector (dynamic data)
Selecting multiple items works when filtering is not active.
Tried many ways to debug: hardcoding the id, turn the id into a number, ensure that the id used has a matching item, remove row level security, tried to turn on and off pagination, etc.
Not the first time this occurs (had issues with rest api not working and never fixed)
So your records have a field with an array of different page ID’s ? Did you try different conditions in the filter ? Like “is in” or “contains” or something else ?
Otherwise you can also try to store the page id within a variable, and set the collection filter on this variable
The issue isn’t that the page id isn’t working (it is). Even when the id is hardcoded no results are returned eventhough the same sql query done on Supabase works ok. Also when no filter is added, results are shown normally.