query-72248fa3fde68131642ccca204e6662b
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
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#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel WHERE {
?item wdt:P195 wd:Q812285 .
?item wdt:P31 wd:Q3305213 .
?item rdfs:label ?iLabel .
FILTER(LANG(?iLabel) = "de")
FILTER(STRENDS(?iLabel, ')')) # or replace the ")" with something more specific.
SERVICE wikibase:label { bd:serviceParam wikibase:language "de" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?iLabel")
v2("?item"):::projected
c2(["de"]):::literal
c6(["wd:Q3305213"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q812285"]):::iri
f0[["ends-with(?iLabel,')')"]]
f0 --> v1
f1[["?iLabel = 'de'"]]
f1 --> v1
v2 --"wdt:P195"--> c4
v2 --"wdt:P31"--> c6
v2 --"rdfs:label"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c2
end