Closed
Description
I encountered an issue related to accessing variables within an object where the key contains a dot. The logical query looks like this:
{
"var": "hello.world"
}
And the payload is:
{
"hello": {
"world": "i'm here!"
},
"hello.world": "ups!"
}
Currently, there is no access to the hello.world
variable. I believe it would be beneficial to adopt the convention used in the dot-prop
package, where access to such a key is possible by including a double backslash before the dot in the key. Therefore, for the mentioned query, it should look like this:
{
"var": "hello\\.world"
}
Metadata
Metadata
Assignees
Labels
No labels