query-f0a0702707d16ce5e6e099cbb0fa6870

rq turtle/ttl

Different works with the same KDM ID

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?item1 ?item2 ?id WHERE {
 ?item1 wdt:P170 wd:Q381238 .    
 ?item2 wdt:P170 wd:Q381238 .    
 ?item1 wdt:P528 ?id.
 ?item2 wdt:P528 ?id.
 FILTER(?item1 != ?item2) .
 FILTER(strlen(?id)<=6) .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?id"):::projected v2("?item1"):::projected v3("?item2"):::projected c3(["wd:Q381238"]):::iri f0[["string-length(?id) <= '6^^xsd:integer'"]] f0 --> v1 f1[["?item1 != ?item2"]] f1 --> v2 f1 --> v3 v2 --"wdt:P170"--> c3 v3 --"wdt:P170"--> c3 v2 --"wdt:P528"--> v1 v3 --"wdt:P528"--> v1