From 7abb9418fe42f77db207954ef1075cd2c4a39523 Mon Sep 17 00:00:00 2001 From: Alessia Bardi Date: Tue, 8 Nov 2022 19:14:15 +0100 Subject: [PATCH] added label for UIBK landing pages --- ...ordered_sparql_insert_UIBK_Collection.sparql | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/UIBK/ordered_sparql_insert_UIBK_Collection.sparql b/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/UIBK/ordered_sparql_insert_UIBK_Collection.sparql index 865553e..846107a 100644 --- a/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/UIBK/ordered_sparql_insert_UIBK_Collection.sparql +++ b/dnet-ariadneplus-graphdb-publisher/src/main/resources/eu/dnetlib/ariadneplus/sparql/enrich/UIBK/ordered_sparql_insert_UIBK_Collection.sparql @@ -86,4 +86,19 @@ WHERE { ?s aocat:has_owner ?o . } } -}; \ No newline at end of file +}; + + PREFIX aocat: + PREFIX rdfs: + INSERT { + GRAPH { + ?lpResource rdfs:label ?label + } + + } + WHERE { + GRAPH { + ?s aocat:has_landing_page ?lpResource . + BIND (STR(?lpResource) as ?label) + } + } \ No newline at end of file