query-bd044eaeb7f21370ddc876389f2584ee
TODO
Use at
- https://query.wikidata.org/sparql
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 distinct ?countryLabel1 ?countryLabel2 WHERE {
?country wdt:P463 wd:Q1065 . # item is a member of the United Nations
?country rdfs:label ?countryLabel1.
FILTER((LANG(?countryLabel1)) = "it")
?country rdfs:label ?countryLabel2.
FILTER((LANG(?countryLabel2)) = "bn")
}
order by ?countryLabel2
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country")
v2("?countryLabel1"):::projected
v1("?countryLabel2"):::projected
c4(["wd:Q1065"]):::iri
f0[["?countryLabel2 = 'bn'"]]
f0 --> v1
f1[["?countryLabel1 = 'it'"]]
f1 --> v2
v3 --"wdt:P463"--> c4
v3 --"rdfs:label"--> v2
v3 --"rdfs:label"--> v1