Hello,
I have a search query that after execution returns some results, as explained in the "Programming Guide for the Metadata and RM Web Services API ".
1. How can you get the ID of the found items/folders?
all I manage to get is the node of the search result, but its ID is not what I am looking for:
ResultPage page = targetResponses.get(0).getResults();
List<Graph> gList = page.getPage();
List<Node> nList = gList.get(0).getN();
String Id = nList.get(0).getId(); ##### this is something like n1, NOT the ID of the found item
2. On a related note, while searching can I set advanced search options, like looking for my search term only in metadata and not in content (for example)?