query-e6847b80e53ff31afce55d06d248db98

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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?description WHERE {
  values ?item {wd:Q3295867}.
  ?item wdt:P31*/wdt:P279* wd:Q43229 .   #is an instance or subclass of
  ?item schema:description ?description.
  FILTER(LANG(?description) = "en")
  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; v1("?description"):::projected v2("?item"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c1(["en"]):::literal c4(["wd:Q43229"]):::iri f0[["?description = 'en'"]] f0 --> v1 bind1[/VALUES ?item/] bind1-->v2 bind10(["wd:Q3295867"]) bind10 --> bind1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v2 --"schema:description"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c1 end