query-653e489189e18a9322b4945d67747ff6
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?P872 ?P872Label
WHERE
{
VALUES ?id {
"20.500.11938/74940"
"20.500.11938/74757"
}
?item wdt:P1184 ?id.
OPTIONAL {?item wdt:P872 ?P872 . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?P872"):::projected
v1("?id")
v2("?item"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?id/]
bind0-->v1
bind00(["20.500.11938/74940"])
bind00 --> bind0
bind01(["20.500.11938/74757"])
bind01 --> bind0
v2 --"wdt:P1184"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P872".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end