0 Workflow Lava Run SQL can't find current workflow 5 Jeff Byrd posted 3 Years Ago I have a workflow and I'm trying to run some SQL within a Lava Run action that utilizes the current Workflow Guid. The results are to get written to a text attribute. My problem is that when it executes, the query is never returning anything.I did some troubleshooting and greatly simplified my query to prove the issue.My simplified Lava Run action looks like this. I realize this does nothing but try to get the current workflow's Guid. My real query does a lot more.{% sql %} select Guid from Workflow where Guid='{{ Workflow.Guid }}'{% endsql %}results:{{results}}I would expect the attribute to get set toresults:System.Dynamic.ExpandoObjectbut it's always justresults:If I execute the same query as a SQL action instead of a Lava Run action, the Guid is correctly set to the attribute.Is there something limiting the Lava from properly running that query within a current workflow, or am I doing something wrong? It's most likely the latter :)Thanks in advance for the help!