copied rdfs:label in skos:prefLabel for native periods from FindSampo

This commit is contained in:
Alessia Bardi 2022-11-01 19:35:41 +01:00
parent f5ac6b000c
commit 83e2961ac5
1 changed files with 16 additions and 0 deletions

View File

@ -127,3 +127,19 @@ WHERE {
?lab gvp:term ?label .
};
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
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::findsampo::finds> {
?nativePeriod skos:prefLabel ?label .
}
}
WHERE {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::findsampo::finds> {
?temporalNative aocat:has_native_period ?nativePeriod .
?nativePeriod rdfs:label ?label .
}
};