//String query = SscfRdfQuery.RDF_FILTER_PARENTS_BY_URI.toString();
//QueryResultsTable results = SesameDbFace.getDbFace().performTableQuery(query,
// uri,S3B_SSCF.isIn);
PathFinder pf = PathFinder.getInstance(uri,withRecom);
//get found paths returns the result without recommendations
int result = pf.getFoundPaths();
//add recommendations, but only for the person which invoked the question
// it is because others do not see the person's recommendations
if(withRecom&&person!=null&&!"".equals(person))
result+=pf.recommendationsCount(person);
return result;
}