query-095bf7689d21b91cffaf4eabb33191d3
Quentin Tarantino films
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?film ?filmLabel (MIN(?publication) AS ?release) WHERE {
?film wdt:P31 ?instance . ?instance wdt:P279* wd:Q11424 .
?film wdt:P57 wd:Q3772 .
?film wdt:P577 ?publication
SERVICE wikibase:label {bd:serviceParam wikibase:language "en"}
}
GROUP BY ?film ?filmLabel
ORDER BY ?release
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?film"):::projected
v3("?instance")
v4("?publication"):::projected
v5("?release")
c8(["bd:serviceParam"]):::iri
c5(["wd:Q3772"]):::iri
c10(["en"]):::literal
c3(["wd:Q11424"]):::iri
v2 --"wdt:P31"--> v3
v3 --"wdt:P279"--> c3
v2 --"wdt:P57"--> c5
v2 --"wdt:P577"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"min(?publication)"/]
v4 --o bind1
bind1 --as--o v5