PREFIX aocat: PREFIX skos: INSERT { GRAPH { ?record aocat:has_derived_subject ?derived_subject . } } USING WHERE { { ?record aocat:has_derived_subject ?derived_subject . } }; PREFIX aocat: PREFIX skos: INSERT { GRAPH { ?derived_subject skos:prefLabel ?dslabel . } } USING WHERE { { ?record aocat:has_derived_subject ?derived_subject . ?derived_subject skos:prefLabel ?dslabel . } }; PREFIX skos: PREFIX aocat: PREFIX time: PREFIX rdfs: INSERT { GRAPH { ?temporal aocat:has_period ?native_period . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label|skos:prefLabel ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } }; PREFIX skos: PREFIX aocat: PREFIX time: PREFIX rdfs: INSERT { GRAPH { ?native_period skos:prefLabel ?native_label . } } WHERE { GRAPH { ?temporal aocat:has_native_period ?native_period . ?native_period rdfs:label|skos:prefLabel ?native_label . ?temporal aocat:from ?from . ?temporal aocat:until ?until . } };