query-a90065959d3dca280ec643a754d512f8

rq turtle/ttl

Películas dirigidas por Steven Spielberg ordenados por año en orden descendente

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 ?pelicula ?peliculaLabel (MIN(YEAR(?fecha_pub)) AS ?fecha) WHERE {
   ?pelicula wdt:P31 wd:Q11424;
             wdt:P57 wd:Q8877;
             wdt:P577 ?fecha_pub.
   SERVICE wikibase:label { bd:serviceParam wikibase:language "es". }
} GROUP BY ?pelicula ?peliculaLabel ORDER BY DESC (?fecha)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?fecha") v3("?fecha_pub"):::projected v2("?pelicula"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q11424"]):::iri c9(["es"]):::literal c4(["wd:Q8877"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P57"--> c4 v2 --"wdt:P577"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"min(year-from-dateTime(?fecha_pub))"/] v3 --o bind1 bind1 --as--o v4