2011-06-02 16:13:18 +00:00
|
|
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
|
|
|
|
|
|
CONSTRUCT {
|
2011-08-15 16:38:40 +00:00
|
|
|
?coAuthorship ?property1 ?object1 .
|
|
|
|
?person ?property2 ?object2 .
|
2011-06-02 16:13:18 +00:00
|
|
|
} WHERE {
|
|
|
|
PERSON_URI core:authorInAuthorship ?authorship .
|
2011-08-15 16:38:40 +00:00
|
|
|
?authorship core:linkedInformationResource ?publication .
|
|
|
|
?publication core:informationResourceInAuthorship ?coAuthorship .
|
|
|
|
?coAuthorship ?property1 ?object1 .
|
|
|
|
?coAuthorship core:linkedAuthor ?person .
|
|
|
|
?person ?property2 ?object2 .
|
2011-06-02 16:13:18 +00:00
|
|
|
}
|