diff --git a/productMods/WEB-INF/rich-export/position/locationForPosition.sparql b/productMods/WEB-INF/rich-export/position/locationForPosition.sparql index 4252e427..5ebd9242 100644 --- a/productMods/WEB-INF/rich-export/position/locationForPosition.sparql +++ b/productMods/WEB-INF/rich-export/position/locationForPosition.sparql @@ -1,10 +1,12 @@ PREFIX core: +PREFIX rdfs: CONSTRUCT { - ?geographicLocation ?property ?object . + ?organization core:hasGeographicLocation ?geographicLocation . + ?geographicLocation rdfs:label ?label . } WHERE { PERSON_URI core:personInPosition ?position . ?position core:positionInOrganization ?organization . ?organization core:hasGeographicLocation ?geographicLocation . - ?geographicLocation ?property ?object . + ?geographicLocation rdfs:label ?label . } \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql b/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql index 05962fdf..2c771c22 100644 --- a/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql +++ b/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql @@ -1,9 +1,11 @@ PREFIX core: +PREFIX rdfs: CONSTRUCT { - ?organization ?property ?object . + ?position core:positionInOrganization ?organization . + ?organization rdfs:label ?label . } WHERE { PERSON_URI core:personInPosition ?position . ?position core:positionInOrganization ?organization . - ?organization ?property ?object . + ?organization rdfs:label ?label . } \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/position/subOrganizationForPosition.sparql b/productMods/WEB-INF/rich-export/position/subOrganizationForPosition.sparql index 34cb7cdc..58678586 100644 --- a/productMods/WEB-INF/rich-export/position/subOrganizationForPosition.sparql +++ b/productMods/WEB-INF/rich-export/position/subOrganizationForPosition.sparql @@ -1,10 +1,12 @@ PREFIX core: +PREFIX rdfs: CONSTRUCT { - ?subOrganization ?property ?object . + ?organization core:hasSubOrganization ?subOrganization . + ?subOrganization rdfs:label ?label . } WHERE { PERSON_URI core:personInPosition ?position . ?position core:positionInOrganization ?organization . ?organization core:hasSubOrganization ?subOrganization . - ?subOrganization ?property ?object . + ?subOrganization rdfs:label ?label . } \ No newline at end of file