2011-08-15 16:38:40 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2013-11-06 15:51:33 -05:00
|
|
|
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
2011-08-15 16:38:40 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?degree ?property ?object
|
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?advisingRelationship .
|
|
|
|
?advisingRelationship a core:AdvisingRelationship .
|
|
|
|
?advisingRelationship core:relates ?advisee .
|
|
|
|
?advisee a foaf:Person .
|
|
|
|
?advisee obo:RO_0000053 ?adviseeRole .
|
|
|
|
?adviseeRole a core:AdviseeRole .
|
|
|
|
?adviseeRole core:relatedBy ?advisingRelationship .
|
|
|
|
?advisee core:relates ?educationalTraining .
|
|
|
|
?educationalTraining a core:EducationalProcess .
|
|
|
|
?educationalTraining obo:RO_0002234 ?awardedDegree .
|
|
|
|
?awardedDegree core:relates ?degree .
|
|
|
|
?degree a core:AcademicDegree .
|
2011-08-15 16:38:40 +00:00
|
|
|
?degree ?property ?object
|
|
|
|
}
|