query-22ebb2c8f48982a460933a82e90e9adb
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?item ?id where {
?item wdt:P3134 ?id.
FILTER (contains(?id, "-"))
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?id"):::projected
v2("?item"):::projected
f0[["contains(?id,'-')"]]
f0 --> v1
v2 --"wdt:P3134"--> v1