query-f34bacf64285daac07634760e3463cc8

rq turtle/ttl

Select alt labels

Use at

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?label_en ?label_de ?label_fr ?label_it ?altLabel
WHERE 
{
  ?item wdt:P31/wdt:P279* wd:Q662914. # Is instance of or subclass of 
  OPTIONAL { ?item skos:altLabel ?altLabel . FILTER (lang(?altLabel) IN ("en", "de", "fr", "it")) }
  OPTIONAL {?item rdfs:label ?label_en filter (lang(?label_en) = "en"). }
  OPTIONAL { ?item rdfs:label ?label_de filter (lang(?label_de) = "de"). }
  OPTIONAL { ?item rdfs:label ?label_fr filter (lang(?label_fr) = "fr"). }
  OPTIONAL { ?item rdfs:label ?label_it filter (lang(?label_it) = "it"). }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?altLabel"):::projected v6("?item"):::projected v3("?label_de"):::projected v4("?label_en"):::projected v2("?label_fr"):::projected v1("?label_it"):::projected a1((" ")) c7(["wd:Q662914"]):::iri v6 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c7 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v6 -."skos:altLabel".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v6 -."rdfs:label".-> v4 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v6 -."rdfs:label".-> v3 end subgraph optional3["(optional)"] style optional3 fill:#bbf,stroke-dasharray: 5 5; v6 -."rdfs:label".-> v2 end subgraph optional4["(optional)"] style optional4 fill:#bbf,stroke-dasharray: 5 5; v6 -."rdfs:label".-> v1 end