Author : Serge Luca
Office Servers and Services MVP, Belgium
There are many situations with Microsoft Flow where we need non standard features, and as developer I am way too often tempted to jump on the custom api and to create my custom Azure function or Azure Web API to provide exactly what I need. If all you have is a hammer everything will look like a nail…
Using the hammer can be overkilled so let’s add another tool to our (Flow) toolbox.
In some cases using the Azure Logic Apps Workflow Definition Language (WDL) directly can be convenient. This WDL is actually part of Logic Apps, the workflow engine running behind Microsoft Flow.
This WDL is used behind any Flow and it shows-up in the Flow Designer.
Let’s take 4 examples.
Example 1 (the easy one)
I have a SharePoint list with a custom column named "Amount". The flow is triggered when a new item is added into the list and I want to check its value. This is straightforward in Flow :
If we click the “option “Edit in advanced mode” we will see the Logic Apps WDL expression.
To find more information regarding the Logic Apps WDL, go to the following site :
A flow is actually composed of a set of JSON objects and the associated value pairs are available from the WDL.
Example 2
A Flow is triggered when a new item is added in a SharePoint list. The SharePoint list has a “ID” system column which is unique. Each row is a contract and the contract ID must be unique. The contractID is automatically generated when the item is added in the list.
The logic is : CONTRACT-XXXX where XXXX is the list idem ID minus 10 and formatted on 4 letters.
ex if ID is 50, the contract ID must be CONTRACT-0040.
To generate the contract, we need to rely on the Compose action.
The workflow will look like this :
The second action is the Compose action with the following value :
The WFDL code will look like this :
“@concat(‘CONTRACT-‘,substring(string(add(sub(float(triggerbody()?[‘ID’]),10),10000)),1,4))”
If the SharePoint ID is 51
In order to dig a little bit I’ve checked the content of triggerbody() by adding a Compose action (by the way don’t forget the double quotes before and after the expression)
What we get is this (a nice JSON result) :
I also noticed after running the flow, that my custom code became a Body variable (the body variable was not available before) :
For the record trigger-body() is a shorcut for trigger().outputs.body
Example 3.
Let’s take a look at the Flow template
The logic of this template is that if the last blog post has been posted more than days days ago you will get a reminder. Here the condition must be expressed in WDL : (the basic mode doesn’t work at all)
The WDL code is the following:
@less(string(first(body(‘List_all_RSS_feed_items’))[‘publishDate’]), addDays(utcnow(),-10))
body(‘List_all_RSS_feed_items’) : returns the raw content of what the action List all RSS feed items returns.
If we open a blog feed in a browser, for instance my own blog feed https://sergeluca.wordpress.com/feed/
we will see that the publication date is a field named
However when we run the worklfow and check the value associated with a completed instance, we see this :
Even tough the RSS is xml based, the RSS action has transformed it into JSON and the “Pubdate” field has been renamed “PublishDate”
So string(first(body(‘List_all_RSS_feed_items’))[‘publishDate’]) returns the publishing date of the first post (which is chronologically the last one)
@less(string(first(body(‘List_all_RSS_feed_items’))[‘publishDate’]), addDays(utcnow(),-10)) says if the last blog post has been published before today minus 10 days then a reminder needs to be sent.
So the rule is:
Don’t forget to add the WDL site to you favorites.
Example 4. You want to check if a query to a SharePoint list is empty
The key thing is that the list of all the items returned from Get item is stored in a vriable called ‘value’.
-> if you switch the Condition action in “advacned” mode, you can type the expression: “@empty(body(‘Get items’)[‘value’])”
Another (less efficient) option would be: @equals(length(body(‘Get Items’)?[‘value’]),0)
Have fun !
Author : Serge Luca
Office Servers and Services MVP, Belgium