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