So I have a table with a field Client that references a record from another table. Client column as such can contain a value such as ['rec1234abc']. Now I want to do a filter to return all records that reference a specific record. I tried this (using the Python client):
my_table.get_all(formula="ARRAYJOIN(Client, '')='rec1234abc'")
But that returns me no results. How can I accomplish this?
