I’m trying to print “{” and “}” inside an expression, but I’m not sure how to do it.
I tried:
{{{$node[“Collector”].data[“start_var_date”]}}}
Expected:
{2019-11-27}
But it gives an error.
I’m trying to print “{” and “}” inside an expression, but I’m not sure how to do it.
I tried:
{{{$node[“Collector”].data[“start_var_date”]}}}
Expected:
{2019-11-27}
But it gives an error.
In this case it is probably best to use simple string concatenation like this:
{{'{' + $node["Collector"].data["start_var_date"] + '}'}}