- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
var query = <queryDef schema = "temp:enrich32" operation="select">
<select>
<node expr="@firstName"/>
</select>
<where>
</where>
</queryDef>
var condition = <condition boolOperator="AND">
<condition>
<condition boolOperator="OR" internalId="0" expr="@gender = 'M'"/>
<condition boolOperator="OR" internalId="1" expr="@gender = 'F'"/>
</condition>
I want to add the condition into the where in query in a javascript activity.
Solved! Go to Solution.