query-2ae7eae44570b97fe4cb9e84ab2db6a9

rq turtle/ttl

Municipis d'Espanya, amb els noms alternatius separats SELECT DISTINCT ?mun ?munLabel ?oficial ?alias WHERE { ?mun wdt:P31/wdt:P279* wd:Q2074737. OPTIONAL {?mun wdt:P1448 ?oficial} OPTIONAL {?mun skos:altLabel ?alias. FILTER(lang(?alias)="ca")} SERVICE wikibase:label { bd:serviceParam wikibase:language "ca" . } }

Use at

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#>
#Municipis d'Espanya, amb els noms alternatius separats
SELECT DISTINCT ?mun ?munLabel ?oficial ?alias
    WHERE {
        ?mun wdt:P31/wdt:P279* wd:Q2074737.
        OPTIONAL {?mun wdt:P1448 ?oficial}
        OPTIONAL {?mun skos:altLabel ?alias.
                 FILTER(lang(?alias)="ca")}
        SERVICE wikibase:label {
        bd:serviceParam wikibase:language "ca" .
        }
    }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?alias"):::projected v2("?mun"):::projected v3("?oficial"):::projected a1((" ")) c4(["wd:Q2074737"]):::iri c8(["bd:serviceParam"]):::iri c1(["ca"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1448".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."skos:altLabel".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c1 end