2011-06-02 16:13:18 +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 16:13:18 +00:00
|
|
|
|
|
|
|
CONSTRUCT {
|
2011-08-15 16:38:40 +00:00
|
|
|
?coAuthorship ?property1 ?object1 .
|
|
|
|
?person ?property2 ?object2 .
|
2011-06-02 16:13:18 +00:00
|
|
|
} 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 .
|
|
|
|
?publication core:relatedBy ?coAuthorship .
|
|
|
|
?coAuthorship a core:Authorship .
|
2011-08-15 16:38:40 +00:00
|
|
|
?coAuthorship ?property1 ?object1 .
|
2013-11-06 15:51:33 -05:00
|
|
|
?coAuthorship core:relates ?person .
|
|
|
|
?person a foaf:Person .
|
2011-08-15 16:38:40 +00:00
|
|
|
?person ?property2 ?object2 .
|
2011-06-02 16:13:18 +00:00
|
|
|
}
|