Postgresql, JSONB, how to query a joined string from an array of objects
I've a JSONB inside a PostgreSQL table with this structure (more or less) { "obj1": { "obj2": { "obj3": [ { "obj4": { "obj": "A" } }, { "obj4": { "obj": "B" } } ] } } } Then my…