
xsparql.testcases-dawg.data-r2.optional.dawg-optional-complex-3.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:
prefix ex:
{for $name $nick $plan $dept
from where
{
$person
a foaf:person;
foaf:name $name .
graph $x {
[] foaf:name $name;
foaf:nick $nick
}
optional {
$person ex:healthplan $plan
optional { $person ex:department $dept }
}
}
return
{$plan}
{$nick}
{$name}
{$dept}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy