added primary image url to enable visualization; records inherit agent urls from collection
This commit is contained in:
parent
145f0e5a1c
commit
ce33e07337
|
@ -9,6 +9,7 @@ INSERT {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
}
|
||||
}
|
||||
USING <https://ariadne-infrastructure.eu/api_________::ariadne_plus::cyi::coins>
|
||||
|
@ -19,6 +20,7 @@ WHERE {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
MINUS {
|
||||
?record aocat:has_creator ?rec_value .
|
||||
}
|
||||
|
@ -35,6 +37,7 @@ INSERT {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
}
|
||||
}
|
||||
USING <https://ariadne-infrastructure.eu/api_________::ariadne_plus::cyi::coins>
|
||||
|
@ -45,6 +48,7 @@ WHERE {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
MINUS {
|
||||
?record aocat:has_publisher ?rec_value .
|
||||
}
|
||||
|
@ -61,6 +65,7 @@ INSERT {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
}
|
||||
}
|
||||
USING <https://ariadne-infrastructure.eu/api_________::ariadne_plus::cyi::coins>
|
||||
|
@ -71,6 +76,7 @@ WHERE {
|
|||
?coll_value rdf:type ?type .
|
||||
?coll_value rdfs:label ?label .
|
||||
?coll_value aocat:has_name ?name .
|
||||
?coll_value aocat:has_homepage ?homepage .
|
||||
MINUS {
|
||||
?record aocat:has_owner ?rec_value .
|
||||
}
|
||||
|
@ -229,4 +235,18 @@ WHERE {
|
|||
?spatial rdf:type aocat:AO_Spatial_Region .
|
||||
?spatial rdfs:label ?label .
|
||||
?spatial aocat:has_place_name ?placeName .
|
||||
};
|
||||
|
||||
PREFIX aocat: <https://www.ariadne-infrastructure.eu/resource/ao/cat/1.1/>
|
||||
INSERT {
|
||||
GRAPH <https://ariadne-infrastructure.eu/api_________::ariadne_plus::cyi::coins> {
|
||||
?record aocat:has_primary_visual_component ?visual_component .
|
||||
}
|
||||
}
|
||||
USING <https://ariadne-infrastructure.eu/api_________::ariadne_plus::cyi::coins>
|
||||
WHERE {
|
||||
?record aocat:has_visual_component ?visual_component .
|
||||
MINUS {
|
||||
?record aocat:has_primary_visual_component ?primary_visual_component .
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue