14 lines
No EOL
476 B
SPARQL
14 lines
No EOL
476 B
SPARQL
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
|
|
|
CONSTRUCT {
|
|
?degree ?property ?object .
|
|
} WHERE {
|
|
PERSON_URI obo:RO_0000056 ?educationalTraining .
|
|
?educationalTraining a core:EducationalProcess .
|
|
?educationalTraining obo:RO_0002234 ?awardedDegree .
|
|
?awardedDegree a core:AwardedDegree .
|
|
?awardedDegree core:relates ?degree .
|
|
?degree a core:AcademicDegree .
|
|
?degree ?property ?object .
|
|
} |