query-fcb655c96f5a564706708ed37a9c51ae
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?item ?text WHERE {
VALUES ?class { wd:Q12308941 wd:Q11879590 wd:Q202444 wd:Q3409032 } .
?item wdt:P31 ?class;
wdt:P1705 ?text;
wdt:P282 wd:Q8216;
wdt:P407 wd:Q9129 .
FILTER( LANG(?text) = 'el' ) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?class")
v3("?item"):::projected
v1("?text"):::projected
c5(["wd:Q8216"]):::iri
c7(["wd:Q9129"]):::iri
f0[["?text = 'el'"]]
f0 --> v1
bind1[/VALUES ?class/]
bind1-->v2
bind10(["wd:Q12308941"])
bind10 --> bind1
bind11(["wd:Q11879590"])
bind11 --> bind1
bind12(["wd:Q202444"])
bind12 --> bind1
bind13(["wd:Q3409032"])
bind13 --> bind1
v3 --"wdt:P31"--> v2
v3 --"wdt:P1705"--> v1
v3 --"wdt:P282"--> c5
v3 --"wdt:P407"--> c7