query-5d18c0172db3d9a9bed83e8bbd1d5035

rq turtle/ttl

21:33, 7 February 2018 (UTC)) talk (Mbch331That didn't work. When I remove the second filter, I do get results with a description that is only the word film. What am I doing wrong (and how can I do it right)?

Use at

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 ?film ?filmLabel ?filmDescription 
WHERE 
{
  ?film wdt:P31 wd:Q11424 ; schema:description "film"@nl .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 10561

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?film"):::projected c6(["bd:serviceParam"]):::iri c8(["en"]):::literal c4([sfilm^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal c2(["wd:Q11424"]):::iri v1 --"wdt:P31"--> c2 v1 --"schema:description"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end