query-c4171dbee528a2ade91c0ec6d3c5a83d
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 ?name ?label {
?name wdt:P31 wd:Q101352 ; wdt:P1705|wdt:P2440 ?label
filter (regex(str(?label), ".+ger.+", "i"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?label"):::projected
v2("?name"):::projected
c4(["wd:Q101352"]):::iri
f0[["regex(str(?label),'.+ger.+','i')"]]
f0 --> v1
v2 --"wdt:P31"--> c4
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P2440"--> v1
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P1705"--> v1
end
union0r <== or ==> union0l
end