query-62fe4041000e6fe50af56d1ca48b12c1
Alies de tot de Catalunya en totes les llengües SELECT DISTINCT ?item ?itemLabel ?alias WHERE { ?item wdt:P17 wd:Q29. ?item wdt:P131* wd:Q5705. ?item skos:altLabel ?alias. SERVICE wikibase:label { bd:serviceParam wikibase:language "ca,oc,en,es,pl,sv,ceb" . } }
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 skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Alies de tot de Catalunya en totes les llengües
SELECT DISTINCT ?item ?itemLabel ?alias
WHERE {
?item wdt:P17 wd:Q29.
?item wdt:P131* wd:Q5705.
?item skos:altLabel ?alias.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "ca,oc,en,es,pl,sv,ceb" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?alias"):::projected
v1("?item"):::projected
c4(["wd:Q5705"]):::iri
c2(["wd:Q29"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["ca,oc,en,es,pl,sv,ceb"]):::literal
v1 --"wdt:P17"--> c2
v1 --"wdt:P131"--> c4
v1 --"skos:altLabel"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end