starting directory structure for sparql queries for NIHVIVO-1275

This commit is contained in:
stellamit 2011-05-25 17:43:14 +00:00
parent 261f9a0fb1
commit f808ce21a6
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,9 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
CONSTRUCT {
?org ?orgProp ?orgObj .
} WHERE {
PERSON_URI core:personInPosition ?position .
?position core:positionInOrganization ?org .
?org ?orgProp ?orgObj .
}

View file

@ -0,0 +1,9 @@
PREFIX core: <http://vivoweb.org/ontology/core#>
CONSTRUCT {
?infoResource ?infoResourceProp ?infoResourceValue .
} WHERE {
PERSON_URI core:authorInAuthorship ?authorship .
?authorship core:linkedInformationResource ?infoResource .
?infoResource ?infoResourceProp ?infoResourceValue .
}