2011-05-31 20:59:35 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
2013-11-06 15:51:33 -05:00
|
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
2011-05-31 20:59:35 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?organization ?property ?object .
|
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?awardReceipt .
|
|
|
|
?awardReceipt a core:AwardReceipt .
|
|
|
|
?awardReceipt core:assignedBy ?organization .
|
|
|
|
?organization a foaf:Organization .
|
2011-05-31 20:59:35 +00:00
|
|
|
?organization ?property ?object .
|
|
|
|
}
|