PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s aocat:has_creator . aocat:has_name "Not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s aocat:has_creator ?creator . } } }; PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?s aocat:has_responsible . aocat:has_name "Not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Individual_Data_Resource . MINUS { ?s aocat:has_responsible ?agent . } } }; PREFIX aocat: PREFIX rdf: INSERT { GRAPH { ?publisher aocat:has_name ?name . } } WHERE { GRAPH { ?record aocat:has_publisher ?publisher . ?publisher rdfs:label ?name . MINUS { ?publisher aocat:has_name ?thename . } } }; PREFIX aocat: PREFIX skos: PREFIX ariadneplus: INSERT { GRAPH { ?record aocat:has_publisher ?publisher . ?publisher ?p ?o . } } USING USING WHERE { ?record aocat:is_part_of ?collection . ?collection aocat:has_publisher ?publisher . ?publisher ?p ?o . MINUS { ?record aocat:has_publisher ?x . } }; PREFIX aocat: PREFIX skos: PREFIX ariadneplus: INSERT { GRAPH { ?record aocat:has_access_rights "Unknown" } } USING WHERE { ?record aocat:is_part_of ?collection . MINUS { ?record aocat:has_access_rights ?ar . } }; PREFIX aocat: PREFIX skos: INSERT { GRAPH { ?record aocat:has_derived_subject ?aat . } } USING USING WHERE { { ?record aocat:has_native_subject ?native_subject . ?native_subject skos:exactMatch ?aat . } union { ?record aocat:has_native_subject ?native_subject . ?native_subject skos:broadMatch ?aat . } union { ?record aocat:has_native_subject ?native_subject . ?native_subject skos:closeMatch ?aat . } union { ?record aocat:has_native_subject ?native_subject . ?native_subject skos:narrowMatch ?aat . } }; PREFIX aocat: INSERT { GRAPH { ?temporal aocat:has_period ?nativePeriod . ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?nativePeriod . ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } }; PREFIX aocat: PREFIX rdfs: PREFIX skos: INSERT { GRAPH { ?nativePeriod skos:prefLabel ?periodLabel . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?nativePeriod . ?nativePeriod rdfs:label ?periodLabel . } };