I have a jsonb column in a postgres table called topics which is a literal array of strings. An example record might have this for a topics value:
['healthcare', 'fitness', 'gains', 'doyouevenliftbro']
I need to find this record among many which would match %lift%
All the other queries I'm finding on stackoverflow and the pg docs can match against doyouevenliftbro as a complete string, or can do a regex match if this is converted from json_to_recordset() or whatever, but then they go on to reference properties inside the JSON, which this doesn't have. Hoping it's simple syntax that's just evading me. Thanks!