query-23cdf9eae8c9ac4208df6adb1b925fbf

rq turtle/ttl

Directorsen:Category:Films credited to Alan Smithee en:Alan Smithee Fear in the City (Q1050541)Catchfire (Q1443951)Death of a Gunfighter ) ?director wdt:P31 wd:Q5 . (Comment out (Q734916)Alan Smithee (Q8877)Steven Spielberg (Q51575)John Huston

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?director ?directorLabel ?film ?filmLabel ?date
{ 
  # bind the director
  BIND (wd:Q8877 AS ?director) .

  # there is a film
  ?film wdt:P31/wdt:P279* wd:Q11424 .

  ?film wdt:P577 ?date .

  # film has a director
  ?film wdt:P57 ?director .

  # human instead of fictional
  ?director wdt:P31 wd:Q5 .

  SERVICE wikibase:label {
     bd:serviceParam wikibase:language "en" .
  }
} ORDER BY ?date

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?date"):::projected v2("?director"):::projected v3("?film"):::projected a1((" ")) c8(["bd:serviceParam"]):::iri c6(["wd:Q5"]):::iri c10(["en"]):::literal c3(["wd:Q11424"]):::iri bind0[/"'wd:Q8877'"/] bind0 --as--o v2 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v3 --"wdt:P577"--> v1 v3 --"wdt:P57"--> v2 v2 --"wdt:P31"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end