If I have a JSON doc like this:
{
"foo": "bar",
"foo:oo": "bar2"
}
I can access the property "foo" with:
SELECT col->"$.foo" // Outputs "bar"
However, if I try to access the property named "foo:oo" like so:
SELECT col->"$.foo:oo" // Should output "bar2", but triggers an error
I get the following error:
Invalid JSON path expression. The error is around character position 8.
How can I access a property that has a semicolon?