10 lines
333 B
SPARQL
10 lines
333 B
SPARQL
![]() |
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||
|
|
||
|
CONSTRUCT {
|
||
|
?educationalTraining ?property ?object .
|
||
|
} WHERE {
|
||
|
PERSON_URI core:advisorIn ?advisingRelationship .
|
||
|
?advisingRelationship core:advisee ?advisee .
|
||
|
?advisee core:educationalTraining ?educationalTraining .
|
||
|
?educationalTraining ?property ?object .
|
||
|
}
|