query-0539600caa6b15334f959d68d2d06ab8
TODO
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 ?brand ?brandLabel ?whatLabel WHERE {
VALUES ?what { wd:Q431289 wd:Q167270 }
?brand wdt:P31 ?what .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr,es,it,de,sv,da,no,nn,fi,pl,nl,fy,ca,zh,ja,ko,ru,uk,cs,tr". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?brand"):::projected
v1("?what")
c3(["bd:serviceParam"]):::iri
c5(["en,fr,es,it,de,sv,da,no,nn,fi,pl,nl,fy,ca,zh,ja,ko,ru,uk,cs,tr"]):::literal
bind0[/VALUES ?what/]
bind0-->v1
bind00(["wd:Q431289"])
bind00 --> bind0
bind01(["wd:Q167270"])
bind01 --> bind0
v2 --"wdt:P31"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end