For more information, please refer to this announcement explaining best practices for getting answers to questions.
TCC - MINUS complex query example
Content
I'm looking for an example of the MINUS operator for a TCC export. The syntx included in the User Guide does not seem quite right. Thanks in advance.
<minus alias="testMinus">
<queries>
<query alias="candidate" projectedClass="com.taleo.akirademo.entity.Candidate">
<projections>
<projection alias="entityKey" tag="entityKey">
<key path=""/>
</projection>
</projections>
<filterings>
<filtering>
<matches>
<field path="firstName"/>
<string>a*</string>
</matches>
</filtering>
</filterings>
</query>
<query alias="candidate2" projectedClass="com.taleo.akirademo.entity.Candidate">
<projections>
<projection alias="entityKey" tag="entityKey">
<key path=""/>
</projection>
</projections>
<filterings>
<filtering>
<matches>
<field path="firstName"/>
<string>s*</string>
</matches>
</filtering>
</filterings>
</query>
</queries>
</minus>