query-5998f0474595e1d85787114951d9cd08
Propertiesinstance of (P31)subclass of (P279)
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 ?app ?appLabel
WHERE {
?app (wdt:P31/wdt:P279*) wd:Q7397.
?app rdfs:label ?appLabel.
FILTER(CONTAINS(?appLabel, "winter")).
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?app"):::projected
v1("?appLabel"):::projected
a1((" "))
c4(["wd:Q7397"]):::iri
f0[["contains(?appLabel,'winter')"]]
f0 --> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c4
v2 --"rdfs:label"--> v1