All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xsparql.base.foaf_lowering-scoped3.xsparql Maven / Gradle / Ivy

The newest version!
declare namespace foaf = "http://xmlns.com/foaf/0.1/";

{ for $Person $Name from 
  where { $Person foaf:name $Name  }
  order by $Name
  return 
         { for $FName 
           where { $Person foaf:knows $Friend .
                   $Friend foaf:name $FName. }
           order by $FName
         return 
         { for $FFName from 
           where { $P foaf:knows $F .
                   $P foaf:name $FName. 
                   $F foaf:name $FFName. }
           return  { $FFName }
         }
         
         }
         
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy