query-ec976c0c1109f93eec4a54f5710bfeca
Wdrupal?item wdt:P279* wd:Q214609 .(Q214609)material
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?item ?itemLabel
WHERE{
VALUES (?item) {(wd:Q296955) (wd:Q1348059)}
?item wdt:P279* wd:Q214609 .
# Search the property chain above forward
?item rdfs:label ?itemLabel.
FILTER (LANG(?itemLabel) = "en")
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c3(["wd:Q214609"]):::iri
f0[["?itemLabel = 'en'"]]
f0 --> v1
bind1[/VALUES ?item/]
bind1-->v2
bind10(["wd:Q296955"])
bind10 --> bind1
bind11(["wd:Q1348059"])
bind11 --> bind1
v2 --"wdt:P279"--> c3
v2 --"rdfs:label"--> v1