Parameterized Queries
You can use Dataweave to build parameterized queries and dynamic queries. The following sections provide more information on executing and configuring the parameters in the standard visual editor and in the XML directly.
Configuring Parameterized Queries
In the SQL query box, enter the query you want to use with the parameterized values prefixed with the ':' character. For example:
SELECT * FROM GoalHeadings WHERE Name = :Name
In the Input Parameters box, set the key value pair for the parameter and value via a DataWeave script:
output application/json --- { "Name": payload }
XML Editor
The XML below corresponds to the same parameterized query demonstrated above:
<cdata-dynamics365:select config-ref="CData_Dynamics365_Configuration" query="SELECT * FROM GoalHeadings WHERE Name = :Name" doc:name="CData Dynamics365"/>
<cdata-dynamics365:input-parameters ><![CDATA[#[output application/json --- { "Name": payload }]]]></cdata-dynamics365:input-parameters>