i'm using this query to look for data in a table where profile
is a JSONB
column
and it works but only if the name is exactly that
SELECT * FROM "users" WHERE "profile" @> '{"name":"Super User"}'
is it possible to have more flexibility like case insensitivity, wildcards and so on ?
Something like "Super%"
or "super user"