Suppose I have a xml as below:
<xx>
<yy>
<name>A</name>
<value>1</value>
</yy>
<yy>
<name>A</name>
<value>2</value>
</yy>
<yy>
<name>B</name>
<value>1</value>
</yy>
</xx>
Now I want to find if any 'yy' is present with name as A and value as 1. So here the matching content would be:
<yy>
<name>A</name>
<value>1</value>
</yy>
I am trying to do this by REST call,qbe GET request but not able to do it. Can some one help me out using:
/v1/qbe
or
/v1/search