query-6b12d45eb704ed1b36104cb440ad4f7f
title:All languages known to wikidata SELECT ?item ?itemLabel ?label ?lang WHERE { VALUES ?item {wd:Q1286} OPTIONAL {?item rdfs:label ?itemLabel. filter(lang(?itemLabel)="en") } OPTIONAL {?item rdfs:label ?label. BIND(lang(?label) as ?lang) } }
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#title:All languages known to wikidata
SELECT ?item ?itemLabel ?label ?lang
WHERE
{
VALUES ?item {wd:Q1286}
OPTIONAL {?item rdfs:label ?itemLabel. filter(lang(?itemLabel)="en") }
OPTIONAL {?item rdfs:label ?label.
BIND(lang(?label) as ?lang) }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?label"):::projected
v4("?lang"):::projected
bind0[/VALUES ?item/]
bind0-->v2
bind00(["wd:Q1286"])
bind00 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v3
bind1[/"?label"/]
v3 --o bind1
bind1 --as--o v4
end