query-3f736da9a1c11c2bcf8638887610bb2e
country demonyms
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 DISTINCT ?itemLabel ?item ?demonym WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "en-gb,en,mul". }
?item wdt:P31 wd:Q6256.
MINUS {?item wdt:P31 wd:Q3024240}
?item wdt:P1549 ?demonym. FILTER (lang(?demonym) = "en")
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?demonym"):::projected
v2("?item"):::projected
c5(["en-gb,en,mul"]):::literal
c8(["wd:Q3024240"]):::iri
c3(["bd:serviceParam"]):::iri
c7(["wd:Q6256"]):::iri
f0[["?demonym = 'en'"]]
f0 --> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
v2 --"wdt:P31"--> c7
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P31"--> c8
end
v2 --"wdt:P1549"--> v1