query-0e1321817f44fcdadd697eb56f51a8bf
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item WHERE {
?item wdt:P31 wd:Q5 .
FILTER( xsd:integer( STRAFTER( STR( ?item ), STR( wd:Q ) ) ) > 10000000 ) .
?item rdfs:label ?label FILTER( LANG( ?label ) = 'en' ) .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label")
c5(["wd:Q5"]):::iri
f0[["?label = 'en'"]]
f0 --> v1
f1[["http://www.w3.org/2001/XMLSchema#integer(substring-after(str(?item),str('wd:Q'))) > '10000000^^xsd:integer'"]]
f1 --> v2
v2 --"wdt:P31"--> c5
v2 --"rdfs:label"--> v1