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 skos: PREFIX aocat: PREFIX time: INSERT { GRAPH { ?temporal aocat:has_period ?period . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . ?temporal aocat:has_period ?period . } }; PREFIX skos: PREFIX aocat: PREFIX time: INSERT { GRAPH { ?native_period skos:prefLabel ?native_label . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . ?temporal aocat:has_period ?period . } };