query-a634221a56afe9a97f48b45edf0c2570
Propertiesinstance of (P31)manufacturer (P176)image (P18)inception (P571)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Timeline
SELECT ?item ?itemLabel ?image ?date
WHERE
{
?item wdt:P31 wd:Q7987.
?item wdt:P176 wd:Q312.
OPTIONAL {?item wdt:P18 ?image.}
OPTIONAL {?item wdt:P571 ?date.}
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("?date"):::projected
v2("?image"):::projected
v1("?item"):::projected
c4(["wd:Q312"]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q7987"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P176"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P571".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end