-
Hi! I have some data in one of my database tables with id and name columns. Both columns are of type String. One of the entries' id contains '&' sign in it. And when I'm requesting it by id I'm getting the following response:
Is there a way to fix such an issue or should I change the id? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
This is the BNF for parsing a Path string in Elide JSON-API : Basically, you can have alphanumeric and any one of these special characters:
|
Beta Was this translation helpful? Give feedback.
-
There are two options:
The second option doesn't require an Elide change but would probably be useful for others. |
Beta Was this translation helpful? Give feedback.
-
Released in: |
Beta Was this translation helpful? Give feedback.
This is the BNF for parsing a Path string in Elide JSON-API :
https://github.com/yahoo/elide/blob/master/elide-core/src/main/antlr4/com/yahoo/elide/generated/parsers/Core.g4#L45-L56
Basically, you can have alphanumeric and any one of these special characters: