query-362288736a7b5b0da8fa17a358f38621
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 ?itemLabel where
{
values ?item {wd:Q12345 wd:Q23456}
optional {?item rdfs:label ?itemLabel. filter(lang(?itemLabel)="en") }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
bind0[/VALUES ?item/]
bind0-->v2
bind00(["wd:Q12345"])
bind00 --> bind0
bind01(["wd:Q23456"])
bind01 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end