added ariadnesubject labels
This commit is contained in:
parent
b38df8f37d
commit
ca1d4a3b90
|
@ -34,6 +34,22 @@ WHERE {
|
|||
}
|
||||
};
|
||||
|
||||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||
INSERT {
|
||||
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::archives> {
|
||||
?ariadneSubject skos:prefLabel ?label .
|
||||
}
|
||||
}
|
||||
WHERE {
|
||||
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::archives> {
|
||||
?s aocat:has_ARIADNE_subject ?ariadneSubject .
|
||||
GRAPH ?g {
|
||||
?ariadneSubject skos:prefLabel ?label .
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||
PREFIX ariadneplus: <https://ariadne-infrastructure.eu/aocat/>
|
||||
|
@ -251,7 +267,7 @@ INSERT {
|
|||
}
|
||||
};
|
||||
|
||||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
||||
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||
INSERT {
|
||||
GRAPH <https://ariadne-infrastructure.eu/ariadneplus::ads::aatplus> {
|
||||
|
@ -263,26 +279,22 @@ PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
|
|||
WHERE {
|
||||
{
|
||||
?record aocat:has_native_subject ?native_subject .
|
||||
?aat_subject owl:sameAs ?native_subject .
|
||||
?aat_subject skos:exactMatch ?aat .
|
||||
?native_subject skos:exactMatch ?aat .
|
||||
}
|
||||
union
|
||||
{
|
||||
?record aocat:has_native_subject ?native_subject .
|
||||
?aat_subject owl:sameAs ?native_subject .
|
||||
?aat_subject skos:broadMatch ?aat .
|
||||
?native_subject skos:broadMatch ?aat .
|
||||
}
|
||||
union
|
||||
{
|
||||
?record aocat:has_native_subject ?native_subject .
|
||||
?aat_subject owl:sameAs ?native_subject .
|
||||
?aat_subject skos:closeMatch ?aat .
|
||||
?native_subject skos:closeMatch ?aat .
|
||||
}
|
||||
union
|
||||
{
|
||||
?record aocat:has_native_subject ?native_subject .
|
||||
?aat_subject owl:sameAs ?native_subject .
|
||||
?aat_subject skos:narrowMatch ?aat .
|
||||
?native_subject skos:narrowMatch ?aat .
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue