query-22496866862349dbd8ad575eb4edd149
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:Q123 wd:Q124}
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:Q123"])
bind00 --> bind0
bind01(["wd:Q124"])
bind01 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."rdfs:label".-> v1
end