I am trying to store text that has an expression in it, inside a database for usage. Looks something like this:
Here is the JSON passed to us: {{ $json.body.requirements.toJsonString() }}
Now if I had this put directly in the expression field of a node, this would properly print out the entire JSON string.
Because this is stored in a database, I think its being passed to the expression as a full string, so instead of seeing requirements, I see the literal text {{ $json.body.requirements.toJsonString() }} get printed out.
How can I escape this in my database so that n8n properly renders the output?