query-e8f93f1f490c7370e98c5da6a3f49f07

rq turtle/ttl

? somevalueBut how to do the same thing for 21:07, 4 June 2018 (UTC)) talk (VIGNERONCdlt,

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 WHERE {
  ?item wdt:P17 wd:Q142; wdt:P380 ?p380 .
  FILTER(ISBLANK(?p380)) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?p380") c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q142"]):::iri f0[["isBlank(?p380)"]] f0 --> v1 v2 --"wdt:P17"--> c2 v2 --"wdt:P380"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end