query-a019d02a3c55d38f283b86cfcbe68e65

rq turtle/ttl

Scientific paper titles ending in "virus"

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?subject ?subjectLabel ?title 
WHERE {
  ?item wdt:P31 wd:Q13442814 .
  ?item wdt:P921 ?subject .
  ?item wdt:P1476 ?title .
  FILTER regex (?title, "(virus)$").
   SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?subject"):::projected v1("?title"):::projected c3(["wd:Q13442814"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal f0[["regex(?title,'(virus)$')"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P921"--> v3 v2 --"wdt:P1476"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end