I have a json column on my database pgsql

I need to search keys with localId, I tried both this query:
SELECT *
FROM public.translations
    where datas->>'localId' = 7;
 SELECT *
    FROM public.translations
        where datas->>'localId'::text = '7';
no results.
How can i do it please?
when i make this query i have no values
SELECT datas->>'localId' as local
FROM public.translations 
SELECT datas::json->>'localId' as local
FROM public.translations 
    
