PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX core: <http://vivoweb.org/ontology/core#> PREFIX afn: <http://jena.hpl.hp.com/ARQ/function#> SELECT DISTINCT ?subclass ?authorship (afn:localname(?authorship) AS ?authorshipName) ?infoResource ?infoResourceName ?dateTime WHERE { GRAPH ?g1 { ?subject ?property ?authorship } OPTIONAL { GRAPH ?g2 { ?authorship core:linkedInformationResource ?infoResource } GRAPH ?g3 { ?infoResource rdfs:label ?infoResourceName } } OPTIONAL { GRAPH ?g4 { ?subclass rdfs:subClassOf core:InformationResource } GRAPH ?g5 { ?infoResource a ?subclass } FILTER (?g5 != <http://vitro.mannlib.cornell.edu/default/inferred-tbox> && ?g5 != <http://vitro.mannlib.cornell.edu/default/vitro-kb-inf> ) } OPTIONAL { GRAPH ?g6 { ?infoResource core:dateTimeValue ?dateTimeValue . ?dateTimeValue core:dateTime ?dateTime . } } } ORDER BY ?subclass DESC(?dateTime) ?infoResourceName