query-20293ffbf5b6fb722f2bbe1fb0541264

rq turtle/ttl

Conflict . Wikidata:Interwiki conflicts#Language not resolved Status: TalkQ34770, TalkQ315, TalkQ4113741 Items involved: language/langue Topic: Interwiki conflict As I understand this item became root item for usual human languages. But still there are ~2000 items which are Q34770 but not Q315:

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 ?label ?num WHERE {
  ?item wdt:P31 wd:Q34770.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  MINUS {?item wdt:P31/wdt:P279* wd:Q315.}
OPTIONAL { ?item wdt:P1098 ?num. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?num"):::projected a1((" ")) c2(["wd:Q34770"]):::iri c4(["bd:serviceParam"]):::iri c8(["wd:Q315"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"wdt:P31"--> c2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c8 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1098".-> v2 end