query-a730656bef849f0cf27f4d54e12ff8dd
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?d WHERE {
?item wdt:P31 wd:Q1793804.
?item schema:description ?d FILTER (LANG (?d) = "de") .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?d"):::projected
v2("?item"):::projected
c8(["#91;AUTO_LANGUAGE#93;,de"]):::literal
c6(["bd:serviceParam"]):::iri
c3(["wd:Q1793804"]):::iri
f0[["?d = 'de'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"schema:description"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end