query-fc0e482073c2a030e9bc51d99b49d9eb

rq turtle/ttl

Burton films without Carter and Depp

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 ((MIN(YEAR(?publication))) AS ?year) ?film ?filmLabel WHERE {
  ?film wdt:P57 wd:Q56008 .
  ?film wdt:P577 ?publication .
  FILTER NOT EXISTS { ?film wdt:P161 wd:Q37175 }
  FILTER NOT EXISTS { ?film wdt:P161 wd:Q170428 }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
GROUP BY ?film ?filmLabel
ORDER BY ?year

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?film"):::projected v3("?publication"):::projected v4("?year") c8(["bd:serviceParam"]):::iri c3(["wd:Q37175"]):::iri c2(["wd:Q170428"]):::iri c10(["en"]):::literal c5(["wd:Q56008"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P161"--> e0c2 e0v1("?film"):::projected e0c2(["wd:Q170428"]):::iri end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> c2 v2 --"wdt:P161"--> c2 f1[["not "]] subgraph f1e1["Exists Clause"] e1v1 --"wdt:P161"--> e1c2 e1v1("?film"):::projected e1c2(["wd:Q37175"]):::iri end f1--EXISTS--> f1e1 f1 --> v2 f1 --> c1 f1 --> c3 v2 --"wdt:P161"--> c3 v2 --"wdt:P57"--> c5 v2 --"wdt:P577"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind3[/"min(year-from-dateTime(?publication))"/] v3 --o bind3 bind3 --as--o v4