query-fd9c84e15475a011e5eb3a982af62028
Propertiesedition or translation of (P629)publication date (P577)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?editionLabel ?publicationDate ?edition
WHERE {
?edition wdt:P629 wd:Q455;
wdt:P577 ?publicationDate.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?publicationDate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?edition"):::projected
v1("?publicationDate"):::projected
c2(["wd:Q455"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
v2 --"wdt:P629"--> c2
v2 --"wdt:P577"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end