# Find all the papers that have the word "guideline" in their title # SELECT ?uri ?date ?title WHERE { ?uri a vivo:InformationResource . ?uri rdfs:label ?title . ?uri vivo:dateTimeValue ?dtv . ?dtv vivo:dateTime ?date . FILTER (regex(?title,"guideline","i")) } ORDER BY DESC(?date)