PREFIX aocat: PREFIX rdf: PREFIX skos: INSERT { GRAPH { ?s aocat:has_type . rdf:type . skos:prefLabel "collection" } } WHERE { GRAPH { ?s rdf:type . MINUS { ?s rdf:type . ?s aocat:has_type ?t . } } }; PREFIX ariadneplus: PREFIX aocat: PREFIX owl: PREFIX skos: INSERT { GRAPH { ?record aocat:has_derived_subject ?aat . } } USING USING WHERE { { ?record aocat:has_native_subject ?concept . ?concept skos:exactMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:broadMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:closeMatch ?aat . } union { ?record aocat:has_native_subject ?concept . ?concept skos:narrowMatch ?aat . } }; PREFIX skos: PREFIX aocat: PREFIX rdfs: INSERT { GRAPH { ?native_period skos:prefLabel ?lab } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label ?lab } }; PREFIX skos: PREFIX aocat: PREFIX time: INSERT { GRAPH { ?temporal aocat:has_period ?periodO . ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?temporal aocat:from ?temporalFrom . ?temporal aocat:until ?temporalUntil . } };