query-5ed838503181d0de6dcb5b8a84664b07
...HAWs onlys
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 ?w ?wLabel
WHERE
{
?w wdt:P463 wd:Q105757481 .
?w wdt:P31 wd:Q1365560 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?wLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?w"):::projected
v1("?wLabel"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q105757481"]):::iri
c8(["de,en"]):::literal
c4(["wd:Q1365560"]):::iri
v2 --"wdt:P463"--> c2
v2 --"wdt:P31"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end