query-3962b168399d39f71371a937aad48f65
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label_fr ?label_en
WHERE
{
VALUES ?item { wd:Q3736439 wd:Q34384 }
OPTIONAL { ?item rdfs:label ?label_fr . FILTER (LANG(?label_fr) = "fr") }
OPTIONAL { ?item rdfs:label ?label_en . FILTER (LANG(?label_en) = "en") }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?label_en"):::projected
v2("?label_fr"):::projected
bind0[/VALUES ?item/]
bind0-->v3
bind00(["wd:Q3736439"])
bind00 --> bind0
bind01(["wd:Q34384"])
bind01 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."rdfs:label".-> v1
end