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 aocat: PREFIX rdfs: INSERT { GRAPH { ?s aocat:has_creator . aocat:has_name "Not provided" . } } WHERE { GRAPH { ?s rdf:type aocat:AO_Collection . MINUS { ?s aocat:has_creator ?creator . } } }; PREFIX aocat: PREFIX rdfs: INSERT { GRAPH { ?record aocat:was_modified "2023-04-13"^^xsd:date } } USING WHERE { ?record rdf:type aocat:AO_Collection . MINUS{ ?record aocat:was_modified ?date } }; PREFIX aocat: PREFIX rdfs: INSERT { GRAPH { ?record aocat:was_issued "2023-04-13"^^xsd:date } } USING WHERE { ?record rdf:type aocat:AO_Collection . MINUS{ ?record aocat:was_issued ?date } }; PREFIX aocat: PREFIX rdf: PREFIX skos: INSERT { GRAPH { ?coll aocat:has_derived_subject ?derivedSubject . } } WHERE { GRAPH { ?coll rdf:type . ?coll aocat:has_derived_subject ?derivedSubject . } }; PREFIX aocat: PREFIX rdf: PREFIX skos: INSERT { GRAPH { ?derivedSubject skos:prefLabel ?prefLabel . } } WHERE { GRAPH { ?coll rdf:type . ?coll aocat:has_derived_subject ?derivedSubject . ?derivedSubject skos:prefLabel ?prefLabel . } };