
xsparql.base.foaf_lowering-scoped3.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 $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