diff --git a/productMods/WEB-INF/rich-export/advising/advisee.sparql b/productMods/WEB-INF/rich-export/advising/advisee.sparql new file mode 100644 index 00000000..449df609 --- /dev/null +++ b/productMods/WEB-INF/rich-export/advising/advisee.sparql @@ -0,0 +1,9 @@ +PREFIX core: + +CONSTRUCT { + ?person ?property ?object . +} WHERE { + PERSON_URI core:advisorIn ?advisingRelationship . + ?advisingRelationship core:advisee ?person . + ?person ?property ?object . +} \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/advising/associatedDegree.sparql b/productMods/WEB-INF/rich-export/advising/associatedDegree.sparql new file mode 100644 index 00000000..4ee7fe12 --- /dev/null +++ b/productMods/WEB-INF/rich-export/advising/associatedDegree.sparql @@ -0,0 +1,9 @@ +PREFIX core: + +CONSTRUCT { + ?degree ?property ?object . +} WHERE { + PERSON_URI core:advisorIn ?advisingRelationship . + ?advisingRelationship core:degreeCandidacy ?degree . + ?degree ?property ?object . +} \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/advising/associatedEducationalTraining.sparql b/productMods/WEB-INF/rich-export/advising/associatedEducationalTraining.sparql new file mode 100644 index 00000000..f9f59ed5 --- /dev/null +++ b/productMods/WEB-INF/rich-export/advising/associatedEducationalTraining.sparql @@ -0,0 +1,9 @@ +PREFIX core: + +CONSTRUCT { + ?educationalTraining ?property ?object . +} WHERE { + PERSON_URI core:advisorIn ?advisingRelationship . + ?advisingRelationship core:advisingContributionTo ?educationalTraining . + ?educationalTraining ?property ?object . +} \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/membership/memberRole.sparql b/productMods/WEB-INF/rich-export/membership/memberRole.sparql deleted file mode 100644 index 839c94f0..00000000 --- a/productMods/WEB-INF/rich-export/membership/memberRole.sparql +++ /dev/null @@ -1,8 +0,0 @@ -PREFIX core: - -CONSTRUCT { - ?memberRole ?property ?object . -} WHERE { - PERSON_URI core:hasMemberRole ?memberRole . - ?memberRole ?property ?object . -} \ No newline at end of file diff --git a/productMods/WEB-INF/rich-export/outreach/outreachRole.sparql b/productMods/WEB-INF/rich-export/outreach/outreachRole.sparql deleted file mode 100644 index 956d93c5..00000000 --- a/productMods/WEB-INF/rich-export/outreach/outreachRole.sparql +++ /dev/null @@ -1,8 +0,0 @@ -PREFIX core: - -CONSTRUCT { - ?outreachRole ?property ?object . -} WHERE { - PERSON_URI core:hasOutreachProviderRole ?outreachRole . - ?outreachRole ?property ?object . -} \ No newline at end of file