Handling of literals with line breaks

I have a question about how line breaks are handled in literals. For example, if we put into the graph the string literal of

"Line one\nLine two"

when we query it back out we get

Line one
Line two

Is there something we can do to make sure we get back the string we put in instead of the rendered version? The problem happens because we then want to BIND that value as the input to a new query, and the evaluator fails on the newline character [ e.g. Encountered: "10" (10) ]

Thanks!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.