query-046bfcd072daf83434686cd245afac8c

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 ?item ?itemLabel ?uuuLabel
WHERE {
  ?item wdt:P279 wd:Q8066 .
    ?item wdt:P702 ?uuu .
  ?uuu wdt:P31 wd:Q165052 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,nl". }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?uuu") c9(["en,nl"]):::literal c7(["bd:serviceParam"]):::iri c2(["wd:Q8066"]):::iri c5(["wd:Q165052"]):::iri v1 --"wdt:P279"--> c2 v1 --"wdt:P702"--> v2 v2 --"wdt:P31"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end