For example, if I have a JSONB column, and it is stored as:
["oranges","apples","bananas"]
How can I check using a LIKE type search if the substring "app" is in the list?
Ideally I would like be able to do something like:
Basket['fruits'].contains_like('%app%')
Is this possible with sqlalchemy?