query-03e6823dd26371aa2591e1a9d9dd61b5
List all items with mineral in the German label SELECT ?item ?itemDescription WHERE { ?item wdt:P279* wd:Q7946; schema:description ?itemDescription. FILTER(CONTAINS(?itemDescription, " Mineral")) FILTER(LANG(?itemDescription)="de") } LIMIT 5000
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/>
# List all items with mineral in the German label
SELECT ?item ?itemDescription WHERE {
?item wdt:P279* wd:Q7946;
schema:description ?itemDescription.
FILTER(CONTAINS(?itemDescription, " Mineral"))
FILTER(LANG(?itemDescription)="de")
}
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemDescription"):::projected
c4(["wd:Q7946"]):::iri
f0[["?itemDescription = 'de'"]]
f0 --> v1
f1[["contains(?itemDescription,' Mineral')"]]
f1 --> v1
v2 --"wdt:P279"--> c4
v2 --"schema:description"--> v1