
xsparql.base.foaf_lowering-scoped5.xsparql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xsparql-test-suite Show documentation
Show all versions of xsparql-test-suite Show documentation
XSPARQL compliance test suite
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 $Friend $FName
where { $Person foaf:knows $Friend .
$Friend foaf:name $FName. }
order by $FName
return
{ for $FFName
where { $Friend foaf:knows $FFriend .
$FFriend foaf:name $FFName. }
return { $FFName }
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy