
xsparql.testcases-dawg-sparql-1.1.negation.temporal-proximity-by-exclusion-nex-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 ex:
prefix dc:
# the closest pre-operative physical examination
{for $exam $date from where{
$exam a ex:physicalexamination;
dc:date $date;
ex:precedes ex:operation1 .
$op a ex:surgicalprocedure; dc:date $opdt .
filter not exists {
$otherexam a ex:physicalexamination;
ex:follows $exam;
ex:precedes ex:operation1
}
}
return
{$date}
{$exam}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy