Lets say I have some JSON like:
{
"normal": 1,
"has some spaces": 2,
"@": 3
}
I can get the value of the normal
field with the simple query:
normal
However I can't get the other two fields. I have tried:
[has some spaces]
'has some spaces'
['has some spaces']
"has some spaces"
["has some spaces"]
{has some spaces}
{'has some spaces'}
{"has some spaces"}
but none of them work