query-9b04ab41b2f7a7ef5a1e8bfbe7ddef5c
Films where Dutch description is filmI'm looking for films where the Dutch description is film. (Not contains the word film, but the description is the word film). I've tried:
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?film ?filmLabel ?desc WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?film wdt:P31 wd:Q11424.
?film schema:description ?desc FILTER ((lang(?desc))="nl") .
FILTER(?desc="film") .
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?desc"):::projected
v2("?film"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c8(["wd:Q11424"]):::iri
f0[["?desc = 'film'"]]
f0 --> v1
f1[["?desc = 'nl'"]]
f1 --> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
v2 --"wdt:P31"--> c8
v2 --"schema:description"--> v1