
xsparql.testcases-dawg.data-r2.optional.dawg-optional-complex-1.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!
prefix foaf:
{for $person $nick $page $img $name $firstn
from where{
$person foaf:nick $nick
optional { $person foaf:isprimarytopicof $page }
optional {
$person foaf:name $name
{ $person foaf:depiction $img } union
{ $person foaf:firstname $firstn }
} filter ( bound($page) || bound($img) || bound($firstn) )
}
return
{$firstn}
{$person}
{$nick}
{$page}
{$name}
{$img}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy