copied rdfs:label in skos:prefLabel for native periods from FindSampo
This commit is contained in:
parent
f5ac6b000c
commit
83e2961ac5
|
@ -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 .
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue