added skos:prefLabel to native_period concept

This commit is contained in:
Enrico Ottonello 2021-11-15 10:46:37 +01:00
parent 259d12d260
commit b592dcbc9e
1 changed files with 21 additions and 0 deletions

View File

@ -57,4 +57,25 @@ WHERE {
?s aocat:has_temporal_coverage ?tc .
}
}
};
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
INSERT {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::pp::fieldworks> {
?nativeLabel skos:prefLabel ?origTemporalNativePeriodName .
}
}
WHERE {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::pp::fieldworks> {
?s rdf:type <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/AO_Collection> .
?s aocat:has_temporal_coverage ?temporalNative .
?temporalNative aocat:has_native_period ?nativeLabel .
?nativeLabel rdfs:label ?origTemporalNativePeriodName .
MINUS {
?nativeLabel skos:prefLabel ?origTemporalNativePeriodName .
}
}
};