Can't figure out how to filter by JSON column with array data
I have a query with some joins that I have built up so far:
Now I am trying to join that list by filtering on the users whose
I've tried multiple combinations of converting to
The following don't seem to work with the way the query is currently crafted:
I've tried a couple other similar query modifications with no luck. Anyone know what I'm doing wrong? I've read that maybe I need to use
Now I am trying to join that list by filtering on the users whose
eventGroups column, which is json, an array of objects, has an item with a particular key-value pair:I've tried multiple combinations of converting to
jsonb or text to try and like or ->> the values, but usually the query fails with some sort of error.The following don't seem to work with the way the query is currently crafted:
I've tried a couple other similar query modifications with no luck. Anyone know what I'm doing wrong? I've read that maybe I need to use
json_array_elements or similar, but not sure how that incorporates into a query like this. Thank you!