query-6e2a61926d70386673a8906b5ec5d5e3
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?descriptionEn ?descriptionDe ?descriptionNl WHERE {
?item wdt:P170 wd:Q191748 .
?item schema:description ?descriptionEn FILTER (LANG (?descriptionEn) = "en") .
?item schema:description ?descriptionDe FILTER (LANG (?descriptionDe) = "de") .
?item schema:description ?descriptionNl FILTER (LANG (?descriptionNl) = "nl") .
} LIMIT 50
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?descriptionDe"):::projected
v3("?descriptionEn"):::projected
v1("?descriptionNl"):::projected
v4("?item"):::projected
c5(["wd:Q191748"]):::iri
f0[["?descriptionNl = 'nl'"]]
f0 --> v1
f1[["?descriptionDe = 'de'"]]
f1 --> v2
f2[["?descriptionEn = 'en'"]]
f2 --> v3
v4 --"wdt:P170"--> c5
v4 --"schema:description"--> v3
v4 --"schema:description"--> v2
v4 --"schema:description"--> v1