added landing page for ADS archives

This commit is contained in:
Alessia Bardi 2022-11-08 17:44:54 +01:00
parent ad442a1991
commit c640276552
1 changed files with 21 additions and 1 deletions

View File

@ -325,3 +325,23 @@ INSERT {
}
}
};
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
INSERT {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::archives> {
?s aocat:has_landing_page ?lpResource .
?lpResource rdfs:label ?url
}
}
WHERE {
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::ads::archives> {
?s aocat:has_original_id ?url .
MINUS {
?s aocat:has_landing_page ?x .
}
BIND (IRI(?url) as ?lpResource)
}
}