query-12b255f0470122201a469d5db337aeda
TODO
Use at
- https://query.wikidata.org/sparql
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 ?town ?townLabel ?countryLabel ?citizens WHERE {
?town wdt:P31/wdt:P279* wd:Q486972.
?town wdt:P17 ?country.
?town wdt:P1082 ?citizens.
?country wdt:P37 wd:Q1321. # spanish speaking countries only
FILTER (?citizens > 50000) # with more than 50000 citizens
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en"
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?citizens"):::projected
v3("?country")
v2("?town"):::projected
a1((" "))
c4(["wd:Q486972"]):::iri
c10(["bd:serviceParam"]):::iri
c12(["en"]):::literal
c8(["wd:Q1321"]):::iri
f0[["?citizens > '50000^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
v2 --"wdt:P17"--> v3
v2 --"wdt:P1082"--> v1
v3 --"wdt:P37"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end