I have a xml file to ingest in MarkLogic database where a new XML field has to be added . And the requirement is to add that XML field only during the mlcp import. Is this possible in MarkLogic using xquery?
XML file now -
<name>rashmita</name>
<employeeType>regular</employeeType>
XML to be changed -
<name>rashmita</name>
<employeeType>regular</employeeType>
<role>developer</role>
Yes, it is possible to modify the payload on ingest with MLCP.
Transforming Content During Ingestion
Function Signature
So, for your example (assuming that the actual docs are well-formed XML) could look something like:
Using a Custom Transformation
An example invocation setting those parameters: