query-5c30c3f724b630dfe4623c3b5f5a3c50
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 DISTINCT ?item ?itemLabel
WHERE
{
?item wdt:P106 wd:Q10873124 .
OPTIONAL { ?item schema:description ?itemDescription . FILTER(lang(?itemDescription)="de") }
FILTER (!BOUND(?itemDescription))
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;
v2("?item"):::projected
v1("?itemDescription")
c1(["de"]):::literal
c6(["bd:serviceParam"]):::iri
c3(["wd:Q10873124"]):::iri
f0[["not bound(?itemDescription)"]]
f0 --> v1
v2 --"wdt:P106"--> c3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:description".-> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c1
end