I would like to perform a quadratic operation in ShopifyFlow.
As shown in the attached image(sorry in Japanese), I have entered the LIQUID code to achieve 1+1.
However, I get the following error
Liquid syntax error: Expected end_of_string but found number in “{{1 | plus 1 }}”
The error occurs because the type number cannot be cast to a type string, as in “{{1 | plus 1 }}”.
Is it possible to realize this cast and perform the four arithmetic operations?
What I tried
Add a string with {{1 | plus 1 | append: “”}}.
Casting to a string with {{1 | plus 1 | string}}
I was not able to do the above.
I would appreciate it if you could tell me if you know anything about this.
Thank you in advance.
