query-9be3a096dc37218089731e6e225c0756

rq turtle/ttl

TODO

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 DISTINCT ?item
  WHERE {
  ?item wdt:P31 wd:Q12140 .
  ?item wdt:P2175 ?condition  .
  ?condition wdt:P1995 wd:Q203337.

  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("?condition") v1("?item"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q12140"]):::iri c9(["en"]):::literal c5(["wd:Q203337"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P2175"--> v2 v2 --"wdt:P1995"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end