query-403890b1541a1b0a9fe87ad49d9cb9f7
TODO
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 ?item ?itemLabel where
{
values ?stuff {wd:Q15284 wd:Q262166 wd:Q253019 wd:Q2983893 wd:Q15830667 wd:Q515}
?item wdt:P31 ?stuff.
?item rdfs:label ?itemLabel. filter(lang(?itemLabel)="de")
filter(strends(?itemLabel,"büttel"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?stuff")
f0[["ends-with(?itemLabel,'büttel')"]]
f0 --> v1
f1[["?itemLabel = 'de'"]]
f1 --> v1
bind2[/VALUES ?stuff/]
bind2-->v2
bind20(["wd:Q15284"])
bind20 --> bind2
bind21(["wd:Q262166"])
bind21 --> bind2
bind22(["wd:Q253019"])
bind22 --> bind2
bind23(["wd:Q2983893"])
bind23 --> bind2
bind24(["wd:Q15830667"])
bind24 --> bind2
bind25(["wd:Q515"])
bind25 --> bind2
v3 --"wdt:P31"--> v2
v3 --"rdfs:label"--> v1