How to search list simple objects column?

I have a data table with one column called Tags which is a list of strings like [‘DataBase’,‘Big Data’]. I am trying to search like this app_tables.mydatatable.search(Tags=taglist) where taglist = [‘Big Data’]. However it does not return anything. Strangely if I search like app_tables.mydatatable.search(Tags=[‘Big Data’]) it returns the correct rows.

related post:

1 Like

Yes , searching a simple object column with list values works exactly as mentioned in the docs. It was my mistake , I was modifying the list in my code.

1 Like