Closed muazzam0x48 closed 6 days ago
(defn nested-result [] {:Name "David"}) (dataflow :Test1 [:match true true [[:eval (quote (nested-result)) :as :R] :R.Name] :as :K])
I want to assign "David" to :K so that it can be used subsequently as a normal string. However, this code results in compilation errors.
(dataflow :Test1 [:match true true [[:eval (quote (nested-result)) :as :R] (quote (identity :R.Name))] :as :K])
I am using this workaround (wrapping it in identity function) which works fine but the syntax looks awkward.
I want to assign "David" to :K so that it can be used subsequently as a normal string. However, this code results in compilation errors.
I am using this workaround (wrapping it in identity function) which works fine but the syntax looks awkward.