Custom DWL Function Using Custom Module

  Custom Dataweave Function Using Custom Module In addition to using the built-in DataWeave function you can also create and use custom modules and mapping files. You write modules and mapping files in a DataWeave Language (.dwl) file and import into your Mule app through DataWeave scripts in Mule components. Both modules and mapping files…

Share this:
Read More

Sort Using OrderBy In Mule 4

OrderBy   By using OrderBy Dataweave function you Reorders the elements of an input using criteria that acts on selected elements of that input. In this tutorial I will use the dataweave OrderBy function to sort the Employee as per the employee age Input Dataweave Expression Result You can see the result in ascending order…

Share this:
Read More

Perform Null Check In Dataweave

perform null check in Dataweave   isEmpty is a dataweave core function that can be used to perform null check In Mule 4. It works on Array,String and Object and gives the result accordingly Examples: Result Examples: Result isEmpty(object) it will return true if the object is empty else false Example: Result true  

Share this:
Read More