query-f091799fd948fc72c065b4405599a539
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 ?item ?itemLabel {
?item wdt:P106 wd:Q937857 .
?item wdt:P118 wd:Q82595 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c8(["de"]):::literal
c6(["bd:serviceParam"]):::iri
c4(["wd:Q82595"]):::iri
c2(["wd:Q937857"]):::iri
v1 --"wdt:P106"--> c2
v1 --"wdt:P118"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end