query-ac7f5d08606147ef8231339548719cc9

rq turtle/ttl

Edited works

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX target: <http://www.wikidata.org/entity/Q18618629>

SELECT
  ?publication_date

  ?work ?workLabel
  (CONCAT("#work/", SUBSTR(STR(?work), 32)) AS ?workUrl)

WHERE {
  ?work wdt:P98 target: .
  OPTIONAL {
    ?work wdt:P577 ?publication_datetime .
    BIND(xsd:date(?publication_datetime) AS ?publication_date)
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?publication_date)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?publication_date"):::projected v3("?publication_datetime") v2("?work"):::projected v4("?workUrl") c5(["bd:serviceParam"]):::iri c2([http://www.wikidata.org/entity/Q18618629]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P98"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P577".-> v3 bind0[/"http://www.w3.org/2001/XMLSchema#date(?publication_datetime)"/] v3 --o bind0 bind0 --as--o v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"concat('#work/',substring(str(?work),'32^^xsd:integer'))"/] v2 --o bind1 bind1 --as--o v4