diff --git a/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql b/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql new file mode 100644 index 00000000..f20179a2 --- /dev/null +++ b/productMods/WEB-INF/rich-export/position/organizationForPosition.sparql @@ -0,0 +1,9 @@ +PREFIX core: + +CONSTRUCT { + ?org ?orgProp ?orgObj . +} WHERE { + PERSON_URI core:personInPosition ?position . + ?position core:positionInOrganization ?org . + ?org ?orgProp ?orgObj . +} \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/publication/publication.sparql b/productMods/WEB-INF/rich-export/publication/publication.sparql new file mode 100644 index 00000000..fc68817d --- /dev/null +++ b/productMods/WEB-INF/rich-export/publication/publication.sparql @@ -0,0 +1,9 @@ +PREFIX core: + +CONSTRUCT { + ?infoResource ?infoResourceProp ?infoResourceValue . +} WHERE { + PERSON_URI core:authorInAuthorship ?authorship . + ?authorship core:linkedInformationResource ?infoResource . + ?infoResource ?infoResourceProp ?infoResourceValue . +} \ No newline at end of file