Are periods supported in key names of JSONB values?
I'm storing the following shape of data in a JSONB type field:
However, when I run a query like:
or
I get the result
or an error
However, when I run a query like:
or
I get the result
or an error
column
--------------
{
"foo.domain.com": {...},
"bar.domain.com": {...}
}client.from("table").select("column->foo.domain.com")client.from("table").select("column->'foo.domain.com'"){foo: null}PGRST100, details: unexpected "'" expecting "-"