2011-06-02 19:09:12 +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-06-02 19:09:12 +00:00
|
|
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
|
|
|
|
|
|
CONSTRUCT {
|
|
|
|
?event ?property ?object .
|
|
|
|
} WHERE {
|
2013-11-06 15:51:33 -05:00
|
|
|
PERSON_URI core:relatedBy ?authorship .
|
|
|
|
?authorship a core:Authorship .
|
|
|
|
?authorship core:relates ?publication .
|
|
|
|
?publication a obo:IAO_0000030 .
|
2011-06-02 19:09:12 +00:00
|
|
|
?publication bibo:presentedAt ?event .
|
|
|
|
?event ?property ?object .
|
|
|
|
}
|