I'm using the DataMapper component in MuleStudio. I want to transform data that I have in this format
<item type="1" name="data">
<children name="action">
<values>login.01</values>
<children>
</item>
to something like this
<item>
<action>login.01</action>
</item>
Is this possible through Mule? Or will I need to make a custom Java parser?