[VIVO-1078] Restrict editor resolution to only books and book sections (chapters)
This commit is contained in:
parent
84a7733bd6
commit
7cf8a6eb8f
3 changed files with 242 additions and 230 deletions
|
@ -25,7 +25,8 @@
|
||||||
?partOf
|
?partOf
|
||||||
?editor
|
?editor
|
||||||
?hideThis
|
?hideThis
|
||||||
WHERE {
|
WHERE
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
@ -35,25 +36,36 @@
|
||||||
OPTIONAL { ?infoResource bibo:pageStart ?startPage }
|
OPTIONAL { ?infoResource bibo:pageStart ?startPage }
|
||||||
OPTIONAL { ?infoResource bibo:pageEnd ?endPage }
|
OPTIONAL { ?infoResource bibo:pageEnd ?endPage }
|
||||||
OPTIONAL { ?infoResource core:placeOfPublication ?locale }
|
OPTIONAL { ?infoResource core:placeOfPublication ?locale }
|
||||||
OPTIONAL { ?infoResource bibo:reproducedIn ?appearsInObj .
|
OPTIONAL {
|
||||||
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||||
?appearsInObj rdfs:label ?appearsIn
|
?appearsInObj rdfs:label ?appearsIn
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource core:publisher ?publisherObj .
|
|
||||||
|
OPTIONAL {
|
||||||
|
?infoResource core:publisher ?publisherObj .
|
||||||
?publisherObj rdfs:label ?publisher
|
?publisherObj rdfs:label ?publisher
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource core:relatedBy ?editorship .
|
|
||||||
|
OPTIONAL {
|
||||||
|
?infoResource core:relatedBy ?editorship .
|
||||||
?editorship a core:Editorship .
|
?editorship a core:Editorship .
|
||||||
?editorship core:relates ?editorObj .
|
?editorship core:relates ?editorObj .
|
||||||
?editorObj rdfs:label ?editor
|
?editorObj rdfs:label ?editor
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
|
||||||
|
OPTIONAL {
|
||||||
|
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
||||||
?partOfObj rdfs:label ?partOf
|
?partOfObj rdfs:label ?partOf
|
||||||
}
|
}
|
||||||
|
|
||||||
OPTIONAL { ?infoResource vitro:mostSpecificType ?subclass }
|
OPTIONAL { ?infoResource vitro:mostSpecificType ?subclass }
|
||||||
OPTIONAL { ?infoResource core:hasPublicationVenue ?publishedIn .
|
OPTIONAL {
|
||||||
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
||||||
?publishedIn rdfs:label ?journal
|
?publishedIn rdfs:label ?journal
|
||||||
}
|
}
|
||||||
OPTIONAL { ?infoResource core:dateTimeValue ?dateTimeValue .
|
|
||||||
|
OPTIONAL {
|
||||||
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?dateTimeValue core:dateTime ?dateTime
|
||||||
}
|
}
|
||||||
OPTIONAL { ?authorship core:hideFromDisplay ?hideThis }
|
OPTIONAL { ?authorship core:hideFromDisplay ?hideThis }
|
||||||
|
@ -64,198 +76,182 @@
|
||||||
} ORDER BY ?subclass DESC(?dateTime) ?infoResourceName
|
} ORDER BY ?subclass DESC(?dateTime) ?infoResourceName
|
||||||
</query-select>
|
</query-select>
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
||||||
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?infoResource vitro:mostSpecificType ?subclass
|
|
||||||
} WHERE {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?infoResource vitro:mostSpecificType ?subclass
|
|
||||||
}
|
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
<query-construct>
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
PREFIX core: <http://vivoweb.org/ontology/core#>
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
||||||
CONSTRUCT {
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
||||||
|
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
|
||||||
|
CONSTRUCT
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:hideFromDisplay ?hideThis .
|
?authorship core:hideFromDisplay ?hideThis .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
?infoResource vitro:mostSpecificType ?subclass .
|
||||||
?infoResource rdfs:label ?infoResourceName .
|
?infoResource rdfs:label ?infoResourceName .
|
||||||
|
?infoResource bibo:volume ?volume .
|
||||||
|
?infoResource bibo:pageStart ?startPage .
|
||||||
|
?infoResource bibo:pageEnd ?endPage .
|
||||||
|
?infoResource core:placeOfPublication ?locale .
|
||||||
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||||
|
?appearsInObj rdfs:label ?appearsIn .
|
||||||
|
|
||||||
|
?infoResource core:publisher ?publisherObj .
|
||||||
|
?publisherObj rdfs:label ?publisher .
|
||||||
|
|
||||||
?infoResource core:hasPublicationVenue ?publishedIn .
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
||||||
?publishedIn rdfs:label ?journal
|
?publishedIn rdfs:label ?journal .
|
||||||
} WHERE {
|
|
||||||
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
||||||
|
?dateTimeValue core:dateTime ?dateTime .
|
||||||
|
|
||||||
|
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
||||||
|
?partOfObj rdfs:label ?partOf .
|
||||||
|
|
||||||
|
?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorship a core:Editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
|
?editorObj rdfs:label ?editor .
|
||||||
|
}
|
||||||
|
WHERE
|
||||||
|
{
|
||||||
{
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship
|
?authorship a core:Authorship
|
||||||
}
|
}
|
||||||
UNION {
|
UNION
|
||||||
?subject ?property ?authorship .
|
{
|
||||||
?authorship a core:Authorship .
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:hideFromDisplay ?hideThis .
|
?authorship core:hideFromDisplay ?hideThis .
|
||||||
} UNION {
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030>
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
} UNION {
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
|
?subject ?property ?authorship .
|
||||||
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
?infoResource vitro:mostSpecificType ?subclass .
|
||||||
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
?infoResource rdfs:label ?infoResourceName
|
?infoResource rdfs:label ?infoResourceName
|
||||||
} UNION {
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
?infoResource core:hasPublicationVenue ?publishedIn
|
?infoResource bibo:volume ?volume .
|
||||||
} UNION {
|
}
|
||||||
|
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 .
|
||||||
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
?infoResource bibo:reproducedIn ?appearsInObj .
|
||||||
|
?appearsInObj rdfs:label ?appearsIn .
|
||||||
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
|
?subject ?property ?authorship .
|
||||||
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
?infoResource core:publisher ?publisherObj .
|
||||||
|
?publisherObj rdfs:label ?publisher .
|
||||||
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
|
?subject ?property ?authorship .
|
||||||
|
?authorship a core:Authorship .
|
||||||
|
?authorship core:relates ?infoResource .
|
||||||
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
|
?infoResource core:dateTimeValue ?dateTimeValue .
|
||||||
|
?dateTimeValue core:dateTime ?dateTime .
|
||||||
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
?infoResource core:hasPublicationVenue ?publishedIn .
|
?infoResource core:hasPublicationVenue ?publishedIn .
|
||||||
?publishedIn rdfs:label ?journal
|
?publishedIn rdfs:label ?journal .
|
||||||
}
|
}
|
||||||
}
|
UNION
|
||||||
</query-construct>
|
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
||||||
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?authorship core:hideFromDisplay ?hideThis .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?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 .
|
|
||||||
?editorship a core:Editorship .
|
|
||||||
?editorship core:relates ?editorObj .
|
|
||||||
?editorObj a foaf:Person .
|
|
||||||
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
|
||||||
?appearsInObj rdfs:label ?appearsIn .
|
|
||||||
?publisherObj rdfs:label ?publisher .
|
|
||||||
?editorObj rdfs:label ?editor .
|
|
||||||
?partOfObj rdfs:label ?partOf
|
|
||||||
} WHERE {
|
|
||||||
{
|
{
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship
|
|
||||||
}
|
|
||||||
UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:hideFromDisplay ?hideThis .
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?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 .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?infoResource bibo:reproducedIn ?appearsInObj .
|
|
||||||
?appearsInObj rdfs:label ?appearsIn
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?infoResource core:publisher ?publisherObj .
|
|
||||||
?publisherObj rdfs:label ?publisher
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
|
||||||
?authorship a core:Authorship .
|
|
||||||
?authorship core:relates ?infoResource .
|
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
|
||||||
?infoResource core:relatedBy ?editorship .
|
|
||||||
?editorship a core:Editorship .
|
|
||||||
?editorship core:relates ?editorObj .
|
|
||||||
?editorObj a foaf:Person .
|
|
||||||
?editorObj rdfs:label ?editor
|
|
||||||
} UNION {
|
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
||||||
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
?infoResource <http://purl.obolibrary.org/obo/BFO_0000050> ?partOfObj .
|
||||||
?partOfObj rdfs:label ?partOf
|
?partOfObj rdfs:label ?partOf .
|
||||||
}
|
}
|
||||||
}
|
UNION
|
||||||
</query-construct>
|
{
|
||||||
|
|
||||||
<query-construct>
|
|
||||||
PREFIX core: <http://vivoweb.org/ontology/core#>
|
|
||||||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
||||||
PREFIX bibo: <http://purl.org/ontology/bibo/>
|
|
||||||
CONSTRUCT {
|
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a bibo:Book .
|
||||||
?infoResource core:dateTimeValue ?dateTimeValue .
|
?infoResource core:relatedBy ?editorship .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?editorship a core:Editorship .
|
||||||
} WHERE {
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
|
?editorObj rdfs:label ?editor .
|
||||||
|
}
|
||||||
|
UNION
|
||||||
|
{
|
||||||
?subject ?property ?authorship .
|
?subject ?property ?authorship .
|
||||||
?authorship a core:Authorship .
|
?authorship a core:Authorship .
|
||||||
?authorship core:relates ?infoResource .
|
?authorship core:relates ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a bibo:BookSection .
|
||||||
?infoResource core:dateTimeValue ?dateTimeValue .
|
?infoResource core:relatedBy ?editorship .
|
||||||
?dateTimeValue core:dateTime ?dateTime
|
?editorship a core:Editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
|
?editorObj rdfs:label ?editor .
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</query-construct>
|
</query-construct>
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,15 @@
|
||||||
?infoResource core:placeOfPublication ?locale .
|
?infoResource core:placeOfPublication ?locale .
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?infoResource .
|
?subject ?property ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a bibo:Book .
|
||||||
|
?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorship a core:Editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
|
?editorObj rdfs:label ?editor
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?infoResource .
|
||||||
|
?infoResource a bibo:BookSection .
|
||||||
?infoResource core:relatedBy ?editorship .
|
?infoResource core:relatedBy ?editorship .
|
||||||
?editorship a core:Editorship .
|
?editorship a core:Editorship .
|
||||||
?editorship core:relates ?editorObj .
|
?editorship core:relates ?editorObj .
|
||||||
|
|
|
@ -147,7 +147,15 @@
|
||||||
?appearsInObj rdfs:label ?appearsIn
|
?appearsInObj rdfs:label ?appearsIn
|
||||||
} UNION {
|
} UNION {
|
||||||
?subject ?property ?infoResource .
|
?subject ?property ?infoResource .
|
||||||
?infoResource a <http://purl.obolibrary.org/obo/IAO_0000030> .
|
?infoResource a bibo:Book .
|
||||||
|
?infoResource core:relatedBy ?editorship .
|
||||||
|
?editorship a core:Editorship .
|
||||||
|
?editorship core:relates ?editorObj .
|
||||||
|
?editorObj a foaf:Person .
|
||||||
|
?editorObj rdfs:label ?editor
|
||||||
|
} UNION {
|
||||||
|
?subject ?property ?infoResource .
|
||||||
|
?infoResource a bibo:BookSection .
|
||||||
?infoResource core:relatedBy ?editorship .
|
?infoResource core:relatedBy ?editorship .
|
||||||
?editorship a core:Editorship .
|
?editorship a core:Editorship .
|
||||||
?editorship core:relates ?editorObj .
|
?editorship core:relates ?editorObj .
|
||||||
|
|
Loading…
Add table
Reference in a new issue