query-e82386c289348e0be2916c04f8ba1662
Map of countries with diplomatic relations with FranceHello! I can get a list of countries that have diplomatic relations with France:
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 ?diplomaziaLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "eu,es,fr,en". }
?herrialdea wdt:P17 wd:Q889.
?herrialdea wdt:P530 ?diplomazia.
}
ORDER by ?diplomaziaLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?diplomazia")
v1("?diplomaziaLabel"):::projected
v2("?herrialdea")
c2(["bd:serviceParam"]):::iri
c6(["wd:Q889"]):::iri
c4(["eu,es,fr,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P17"--> c6
v2 --"wdt:P530"--> v3