PREFIX rdf: PREFIX rdfs: PREFIX owl: PREFIX foaf: # discover "incoming" contacts (people who say they know the person in # question) to propose these contacts as new acquaintances. SELECT DISTINCT ?result WHERE { ?result foaf:knows . OPTIONAL { ?result foaf:knows ?var1 . FILTER ( = ?var1 ) foaf:knows ?result . } FILTER ( !bound(?var1) ) }