modified list views to remove syntax that fetches all properties and values for a subject
This commit is contained in:
parent
adbfea8151
commit
65284687c3
20 changed files with 192 additions and 128 deletions
|
@ -74,37 +74,6 @@
|
|||
}
|
||||
</query-construct>
|
||||
|
||||
<query-construct>
|
||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
?advisingRel ?advisingRelProperty ?advisingRelValue .
|
||||
?advisingRel rdfs:label ?advisingRelLabel .
|
||||
} WHERE {
|
||||
{
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship
|
||||
} UNION {
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
} UNION {
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
?advisingRel rdfs:label ?advisingRelLabel
|
||||
}
|
||||
}
|
||||
</query-construct>
|
||||
|
||||
<query-construct>
|
||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
|
@ -116,6 +85,7 @@
|
|||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
?advisingRel rdfs:label ?advisingRelLabel .
|
||||
?advisingRel core:relates ?adviseeRole .
|
||||
?adviseeRole <http://purl.obolibrary.org/obo/RO_0000052> ?advisee .
|
||||
?advisee a foaf:Person .
|
||||
|
@ -131,6 +101,12 @@
|
|||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
} UNION {
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
?advisorRole core:relatedBy ?advisingRel .
|
||||
?advisingRel a core:AdvisingRelationship .
|
||||
?advisingRel rdfs:label ?advisingRelLabel
|
||||
} UNION {
|
||||
?subject ?property ?advisorRole .
|
||||
?advisorRole a core:AdvisorRole .
|
||||
|
|
|
@ -91,7 +91,6 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource rdfs:label ?infoResourceName .
|
||||
|
@ -105,7 +104,6 @@
|
|||
UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
|
@ -142,10 +140,12 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue .
|
||||
?infoResource bibo:volume ?volume .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||
?infoResource core:publisher ?publisherObj .
|
||||
?infoResource core:relatedBy ?editorship .
|
||||
|
@ -165,7 +165,6 @@
|
|||
UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
|
@ -176,7 +175,25 @@
|
|||
?authorship a core:Authorship .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue
|
||||
?infoResource bibo:volume ?volume .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
|
|
|
@ -83,7 +83,6 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource rdfs:label ?infoResourceName .
|
||||
|
@ -93,11 +92,6 @@
|
|||
{
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
|
@ -134,10 +128,12 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue .
|
||||
?infoResource bibo:volume ?volume .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||
?infoResource core:publisher ?publisherObj .
|
||||
?infoResource core:relatedBy ?editorship .
|
||||
|
@ -153,11 +149,6 @@
|
|||
{
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
|
@ -168,7 +159,25 @@
|
|||
?editorship a core:Editorship .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue
|
||||
?infoResource bibo:volume ?volume .
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship core:relates ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
|
|
|
@ -70,7 +70,6 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue .
|
||||
?edTraining <http://purl.obolibrary.org/obo/RO_0002234> ?awardedDegree .
|
||||
?awardedDegree core:relates ?degree .
|
||||
?edTraining core:dateTimeInterval ?dateTimeInterval
|
||||
|
@ -82,7 +81,17 @@
|
|||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue
|
||||
?edTraining core:majorField ?majorField .
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining core:departmentOrSchool ?deptOrSchool .
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining core:supplementalInformation ?info .
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
|
@ -111,7 +120,6 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue .
|
||||
?edTraining <http://purl.obolibrary.org/obo/RO_0000057> ?org .
|
||||
?org a foaf:Organization .
|
||||
?org rdfs:label ?orgName .
|
||||
|
@ -120,11 +128,6 @@
|
|||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
|
|
|
@ -140,16 +140,11 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role a vivo:AttendeeRole .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?event1 rdfs:label ?event1Label
|
||||
} WHERE {
|
||||
{
|
||||
?subject ?property ?role .
|
||||
?role a vivo:AttendeeRole .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a vivo:AttendeeRole .
|
||||
?role ?roleProperty ?roleValue
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a vivo:AttendeeRole .
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
</collated>
|
||||
}
|
||||
OPTIONAL { ?role core:roleContributesTo ?activity .
|
||||
?activity rdfs:label ?activityLabel
|
||||
?activity rdfs:label ?activityName
|
||||
|
||||
<collated>
|
||||
?activity vitro:mostSpecificType ?subclass
|
||||
|
@ -92,7 +92,7 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role a core:ClinicalRole .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?role rdfs:label ?roleLabel .
|
||||
?activity rdfs:label ?activityName
|
||||
} WHERE {
|
||||
{
|
||||
|
@ -101,7 +101,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ClinicalRole .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ClinicalRole .
|
||||
|
|
|
@ -71,7 +71,6 @@
|
|||
?subject ?property ?role .
|
||||
?role a core:CoPrincipalInvestigatorRole .
|
||||
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?activity rdfs:label ?activityLabel .
|
||||
?activity core:assignedBy ?awardedBy .
|
||||
?awardedBy rdfs:label ?awardedByLabel .
|
||||
|
@ -82,10 +81,6 @@
|
|||
{
|
||||
?subject ?property ?role .
|
||||
?role a core:CoPrincipalInvestigatorRole .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:CoPrincipalInvestigatorRole .
|
||||
?role ?roleProperty ?roleValue
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:CoPrincipalInvestigatorRole .
|
||||
|
|
|
@ -69,11 +69,13 @@
|
|||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role a core:InvestigatorRole .
|
||||
?role <http://vivoweb.org/ontology/core#relatedBy> ?activity .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?role vitro:mostSpecificType ?subclass .
|
||||
?role core:hideFromDisplay ?hideThis .
|
||||
?activity rdfs:label ?activityLabel .
|
||||
?activity core:assignedBy ?awardedBy .
|
||||
?awardedBy rdfs:label ?awardedByLabel .
|
||||
|
@ -87,7 +89,11 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:InvestigatorRole .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role core:hideFromDisplay ?hideThis .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:InvestigatorRole .
|
||||
?role vitro:mostSpecificType ?subclass .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:InvestigatorRole .
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?role rdfs:label ?roleLabel .
|
||||
?activity rdfs:label ?activityName
|
||||
} WHERE {
|
||||
{
|
||||
|
@ -119,7 +119,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue .
|
||||
?authorship core:rank ?rank .
|
||||
?authorship core:relates ?author .
|
||||
?author a foaf:Agent .
|
||||
?author rdfs:label ?authorName .
|
||||
|
@ -73,7 +73,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue
|
||||
?authorship core:rank ?rank .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
|
@ -100,7 +100,7 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue .
|
||||
?authorship core:rank ?rank .
|
||||
?authorship core:relates ?author .
|
||||
?author a vcard:Kind .
|
||||
?author vcard:hasName ?vName .
|
||||
|
@ -116,7 +116,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
?authorship ?authorshipProperty ?authorshipValue
|
||||
?authorship core:rank ?rank .
|
||||
} UNION {
|
||||
?subject ?property ?authorship .
|
||||
?authorship a core:Authorship .
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue .
|
||||
?editorship core:rank ?rank .
|
||||
?editorship core:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?personName .
|
||||
|
@ -56,7 +56,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
?editorship ?editorshipProperty ?editorshipValue
|
||||
?editorship core:rank ?rank
|
||||
} UNION {
|
||||
?subject ?property ?editorship .
|
||||
?editorship a core:Editorship .
|
||||
|
|
|
@ -79,7 +79,8 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position ?positionProperty ?positionValue .
|
||||
?position core:hideFromDisplay ?hideThis .
|
||||
?position rdfs:label ?positionTitle .
|
||||
?position core:relates ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?personName
|
||||
|
@ -90,7 +91,11 @@
|
|||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position ?positionProperty ?positionValue
|
||||
?position core:hideFromDisplay ?hideThis
|
||||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position rdfs:label ?positionTitle
|
||||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position core:relates ?person .
|
||||
|
|
|
@ -112,7 +112,8 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue .
|
||||
?edTraining core:majorField ?majorField .
|
||||
?edTraining core:supplementalInformation ?info .
|
||||
?edTraining <http://purl.obolibrary.org/obo/RO_0000057> ?person .
|
||||
?person a foaf:Person .
|
||||
?person rdfs:label ?personName
|
||||
|
@ -124,7 +125,11 @@
|
|||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess .
|
||||
?edTraining ?edTrainingProp ?edTrainingValue
|
||||
?edTraining core:majorField ?majorField .
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
?edTraining a core:EducationalProcess
|
||||
?edTraining core:supplementalInformation ?info .
|
||||
}
|
||||
UNION {
|
||||
?subject ?property ?edTraining .
|
||||
|
|
|
@ -81,17 +81,27 @@
|
|||
PREFIX obo: <http://purl.obolibrary.org/obo/>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?position .
|
||||
?position ?positionProperty ?positionValue .
|
||||
?position rdfs:label ?positionTitle .
|
||||
?position core:hrJobTitle ?hrJobTitle .
|
||||
?position core:rank ?rank .
|
||||
?position core:relates ?org .
|
||||
?org rdfs:label ?orgName .
|
||||
?org obo:BFO_0000050 ?middleOrg .
|
||||
?middleOrg rdfs:label ?middleOrgName .
|
||||
?middleOrg obo:BFO_0000050 ?outerOrg .
|
||||
?outerOrg rdfs:label ?outerOrgName
|
||||
?outerOrg rdfs:label ?outerOrgName .
|
||||
} WHERE {
|
||||
{
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position ?positionProperty ?positionValue
|
||||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position rdfs:label ?positionTitle .
|
||||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
?position core:rank ?rank
|
||||
} UNION {
|
||||
?subject ?property ?position .
|
||||
?position a core:Position .
|
||||
|
|
|
@ -81,7 +81,10 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue .
|
||||
?infoResource bibo:volume ?volume .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||
?infoResource core:publisher ?publisherObj .
|
||||
?infoResource core:relatedBy ?editorship .
|
||||
|
@ -97,7 +100,19 @@
|
|||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue
|
||||
?infoResource bibo:volume ?volume .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
|
|
|
@ -105,7 +105,11 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue .
|
||||
?infoResource rdfs:label ?infoResourceName .
|
||||
?infoResource bibo:volume ?volume .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||
?infoResource core:publisher ?publisherObj .
|
||||
?infoResource core:relatedBy ?editorship .
|
||||
|
@ -120,10 +124,23 @@
|
|||
{
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource rdfs:label ?infoResourceName .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource ?infoResourceProperty ?infoResourceValue
|
||||
?infoResource bibo:volume ?volume .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageStart ?startPage .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource bibo:pageEnd ?endPage .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
?infoResource core:placeOfPublication ?locale .
|
||||
} UNION {
|
||||
?subject ?property ?infoResource .
|
||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||
|
|
|
@ -36,11 +36,6 @@
|
|||
OPTIONAL { ?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole .
|
||||
?indivInRole rdfs:label ?indivLabel
|
||||
}
|
||||
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?indivInRole .
|
||||
}
|
||||
OPTIONAL { ?role <http://purl.obolibrary.org/obo/BFO_0000054> ?indivInRole .
|
||||
?indivInRole rdfs:label ?indivLabel
|
||||
}
|
||||
|
||||
OPTIONAL { ?role core:dateTimeInterval ?dateTimeInterval .
|
||||
?dateTimeInterval core:start ?dateTimeStartValue .
|
||||
|
@ -63,9 +58,10 @@
|
|||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?role rdfs:label ?roleLabel .
|
||||
?role vitro:mostSpecificType ?subclass .
|
||||
?subclass rdfs:label ?roleTypeLabel .
|
||||
?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole .
|
||||
?indivInRole rdfs:label ?indivLabel
|
||||
} WHERE {
|
||||
{
|
||||
|
@ -74,7 +70,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
|
@ -88,11 +84,10 @@
|
|||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole .
|
||||
?indivInRole rdfs:label ?indivLabel
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?indivInRole .
|
||||
?role <http://purl.obolibrary.org/obo/RO_0000052> ?indivInRole .
|
||||
?indivInRole rdfs:label ?indivLabel
|
||||
}
|
||||
}
|
||||
|
|
|
@ -63,12 +63,18 @@
|
|||
?role a core:ResearcherRole .
|
||||
?role core:relatedBy ?activity .
|
||||
?activity vitro:mostSpecificType ?subclass .
|
||||
} WHERE {
|
||||
?activity rdfs:label ?activityName .
|
||||
} WHERE { {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role core:relatedBy ?activity .
|
||||
?activity vitro:mostSpecificType ?subclass
|
||||
}
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role core:relatedBy ?activity .
|
||||
?activity rdfs:label ?activityName .
|
||||
}}
|
||||
</query-construct>
|
||||
|
||||
<query-construct>
|
||||
|
@ -81,22 +87,30 @@
|
|||
?role a core:ResearcherRole .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?activity vitro:mostSpecificType ?subclass .
|
||||
} WHERE {
|
||||
?activity rdfs:label ?activityName .
|
||||
} WHERE { {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?activity vitro:mostSpecificType ?subclass
|
||||
}
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?activity rdfs:label ?activityName .
|
||||
} }
|
||||
</query-construct>
|
||||
|
||||
<query-construct>
|
||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?activity rdfs:label ?activityName
|
||||
?role rdfs:label ?roleLabel .
|
||||
?role core:hideFromDisplay ?hideThis .
|
||||
?role vitro:mostSpecificType ?roleSubclass
|
||||
} WHERE {
|
||||
{
|
||||
?subject ?property ?role .
|
||||
|
@ -104,17 +118,15 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?activity rdfs:label ?activityName
|
||||
?role core:hideFromDisplay ?hideThis .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a core:ResearcherRole .
|
||||
?role core:relatedBy ?activity .
|
||||
?activity rdfs:label ?activityName
|
||||
?role vitro:mostSpecificType ?roleSubclass .
|
||||
}
|
||||
}
|
||||
</query-construct>
|
||||
|
|
|
@ -94,8 +94,10 @@
|
|||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?activity rdfs:label ?activityName
|
||||
?role rdfs:label ?roleLabel .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?role core:roleContributesTo ?activity .
|
||||
?activity rdfs:label ?activityName .
|
||||
} WHERE {
|
||||
{
|
||||
?subject ?property ?role .
|
||||
|
@ -103,7 +105,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
|
|
|
@ -66,7 +66,9 @@
|
|||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||
CONSTRUCT {
|
||||
?subject ?property ?role .
|
||||
?role ?roleProperty ?roleValue .
|
||||
?role rdfs:label ?roleLabel .
|
||||
?role <http://purl.obolibrary.org/obo/BFO_0000054> ?activity .
|
||||
?role core:roleContributesTo ?activity .
|
||||
?activity rdfs:label ?activityName
|
||||
} WHERE {
|
||||
{
|
||||
|
@ -75,7 +77,7 @@
|
|||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
?role ?roleProperty ?roleValue
|
||||
?role rdfs:label ?roleLabel .
|
||||
} UNION {
|
||||
?subject ?property ?role .
|
||||
?role a ?objectType .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue