assume this json ```json {"$":123, "$a":456} ``` the following expression works fine: ``` $['$a'] ``` however this expression returns the whole json: ``` $['$'] ``` when it should return `123`