query-1688c14ef984acc4eb2078fd03f971bb
Propertiescollection (P195)inventory number (P217)image (P18)
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 DISTINCT ?item ?itemLabel ?dptLabel ?inv ?img
WHERE
{
?item wdt:P195 ?dpt.
?item wdt:P217 ?inv.
VALUES ?inv {"A 45"}.
OPTIONAL{?item wdt:P18 ?img}
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;
v2("?dpt")
v4("?img"):::projected
v4("?inv"):::projected
v1("?item"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P195"--> v2
v1 --"wdt:P217"--> v4
bind0[/VALUES ?inv/]
bind0-->v4
bind00(["A 45"])
bind00 --> bind0
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end