query-d85fd4071650142c5906036e4a8ed645

rq turtle/ttl

Álbumes de estudio de Los Beatles que no sean reediciones con su fecha de publicación

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 ?album ?albumLabel (MIN(YEAR(?fecha_pub)) AS ?fecha) WHERE {
   ?album wdt:P7937 wd:Q208569 ;
          wdt:P175 wd:Q1299 ;
          wdt:P577 ?fecha_pub .
   FILTER NOT EXISTS{?album wdt:P9237 ?original}
   SERVICE wikibase:label {bd:serviceParam wikibase:language "es".}
} GROUP BY ?album ?albumLabel ORDER BY (?fecha)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?album"):::projected v5("?fecha") v4("?fecha_pub"):::projected v3("?original") c8(["bd:serviceParam"]):::iri c3(["wd:Q208569"]):::iri c5(["wd:Q1299"]):::iri c10(["es"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P9237"--> e0v2 e0v1("?album"):::projected e0v2("?original"):::projected end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 v2 --"wdt:P9237"--> v3 v2 --"wdt:P7937"--> c3 v2 --"wdt:P175"--> c5 v2 --"wdt:P577"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind2[/"min(year-from-dateTime(?fecha_pub))"/] v4 --o bind2 bind2 --as--o v5