query-fae886cf8f18bf71c3ccdb0188aa09a3
Propertiesinstance of (P31)manufacturer (P176)uses (P2283)
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#>
SELECT DISTINCT ?item ?itemLabel ?manuLabel ?usesLabel
{
?item wdt:P31 wd:Q86901049.
?item wdt:P176 ?manu.
OPTIONAL {
?item wdt:P2283 ?uses.
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?manu")
v3("?uses")
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c2(["wd:Q86901049"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P176"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P2283".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end