Reputation: 11
Hi I am trying to divide two numbers using Liquid map in logic app, but it is not working. Here is my simple mapping code:
{ "unitWeight":"{{ 4 | Divided_by: 2 }}" }
output:
{ "unitWeight": "4" }
Upvotes: 1
Views: 446
Reputation: 496
DotLiquid uses DividedBy
Example:
{{ 10 | DividedBy: 2}}
Upvotes: 4