query-bfd0c5682c574a029f0ab9c31dcb4f4d

rq turtle/ttl

Scientific paper titles including "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 ?title 
WHERE {
  ?item wdt:P31 wd:Q13442814 .
  ?item wdt:P1476 ?title .
  FILTER regex(str(?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 v1("?title"):::projected c3(["wd:Q13442814"]):::iri c6(["bd:serviceParam"]):::iri c8(["en"]):::literal f0[["regex(str(?title),'virus')"]] f0 --> v1 v2 --"wdt:P31"--> c3 v2 --"wdt:P1476"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end