added propagation of temporal data for document
This commit is contained in:
parent
b86195ea71
commit
2d01f321d1
|
@ -26,6 +26,22 @@ WHERE {
|
||||||
?record aocat:is_about ?event .
|
?record aocat:is_about ?event .
|
||||||
};
|
};
|
||||||
|
|
||||||
|
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||||
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
|
PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
|
||||||
|
INSERT {
|
||||||
|
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::amcr::oai> {
|
||||||
|
?record aocat:has_temporal_coverage ?activity_t .
|
||||||
|
}
|
||||||
|
}
|
||||||
|
USING <https://ariadne-infrastructure.eu/api_________::ariadne_plus::amcr::oai>
|
||||||
|
WHERE {
|
||||||
|
?activity aocat:happens_at ?activity_t .
|
||||||
|
?activity aocat:is_subject_of ?document_part .
|
||||||
|
?document_part crm:P148i_is_component_of ?document .
|
||||||
|
?record aocat:is_about ?document .
|
||||||
|
};
|
||||||
|
|
||||||
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||||
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
||||||
INSERT {
|
INSERT {
|
||||||
|
|
Loading…
Reference in New Issue