Modified ontology
This commit is contained in:
parent
f41f50fad3
commit
7cff47c46b
3 changed files with 7 additions and 4 deletions
|
@ -21,7 +21,8 @@ display:getExcerptAssignedArticlesDataGetter
|
|||
SELECT DISTINCT ?articleName ?articleUri
|
||||
WHERE {
|
||||
?articleUri rdf:type ts_:elenphArticle .
|
||||
?articleUri (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?individualURI .
|
||||
?articleUri ts_:hasTOC ?toc .
|
||||
?toc (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?individualURI .
|
||||
?articleUri rdfs:label ?articleName .
|
||||
} ORDER BY ?articleName
|
||||
""" .
|
||||
|
|
|
@ -31,7 +31,8 @@ display:getArticlesWithChildRubricDataGetter
|
|||
?rubric (pr:hasParent)+ ?individualURI .
|
||||
?excerpt pr:belongsTo ?rubric .
|
||||
?excerpt rdf:type ts_:elenphExcerpt .
|
||||
?childArticleID (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?excerpt .
|
||||
?childArticleID ts_:hasTOC ?toc .
|
||||
?toc (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?excerpt .
|
||||
?childArticleID rdfs:label ?childArticleName .
|
||||
?childArticleID rdf:type ts_:elenphArticle .
|
||||
} ORDER BY ?childArticleName
|
||||
|
@ -51,7 +52,8 @@ display:getArticlesWithRubricDataGetter
|
|||
WHERE {
|
||||
?excerpt pr:belongsTo ?individualURI .
|
||||
?excerpt rdf:type ts_:elenphExcerpt .
|
||||
?articleID (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?excerpt .
|
||||
?articleID ts_:hasTOC ?toc .
|
||||
?toc (ts_:hasTOCItem/ts_:pointsTo)+/ts_:hasText ?excerpt .
|
||||
?articleID rdfs:label ?articleName .
|
||||
?articleID rdf:type ts_:elenphArticle .
|
||||
} ORDER BY ?articleName
|
||||
|
|
Loading…
Add table
Reference in a new issue