query-197b1a189fdd69b9230d0a4ea1840ace
Recent publications
Use at
- https://query.wikidata.org/sparql
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/Q2188>
SELECT
(xsd:date(?publication_datetime) AS ?publication_date)
?work ?workLabel
(CONCAT("#work/", SUBSTR(STR(?work), 32)) AS ?workUrl)
?workDescription
WHERE {
?work wdt:P123 target: ;
wdt:P577 ?publication_datetime .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?publication_datetime)
LIMIT 200
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?publication_date")
v1("?publication_datetime"):::projected
v2("?work"):::projected
v4("?workUrl")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2([http://www.wikidata.org/entity/Q2188]):::iri
v2 --"wdt:P123"--> c2
v2 --"wdt:P577"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind0[/"http://www.w3.org/2001/XMLSchema#date(?publication_datetime)"/]
v1 --o bind0
bind0 --as--o v3
bind1[/"concat('#work/',substring(str(?work),'32^^xsd:integer'))"/]
v2 --o bind1
bind1 --as--o v4