query-536981ea0499c0012189e4c43733ed43
Jollywatt(P163)flag (P31)instance of (Q186516)national flag (P1001)applies to jurisdiction
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 ?country ?countryLabel ?flag ?population
WHERE {
?country wdt:P31 wd:Q6256;
wdt:P1082 ?population;
wdt:P163 ?flag.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?population)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?country"):::projected
v3("?flag"):::projected
v1("?population"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q6256"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1082"--> v1
v2 --"wdt:P163"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end