Hi, I'm using Postgres and have a JSON column with...
# orm-help
c
Hi, I'm using Postgres and have a JSON column with this shape:
Copy code
{ 
  "id": "uuid", 
  "members": [ { "id": 1 } ],
}
If I have a specific
member
ID, how would I find rows that have a
members
array containing a
member
object with that ID? I'm using the new JSON filtering API.
r
@Carlos Gomez 👋 You can do it like this but it’s only supported on MySQL as of now