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

xsparql.base.foaf_lowering.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 from 
           where { $Person foaf:knows $Friend .
                   $Person foaf:name $Name.
                   $Friend foaf:name $FName. }
           return  { $FName }
         }
         
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy