query-b085c11d8fdb6a89d7b70e3dc93e441b
P747 (édition)
Use at
- https://query.wikidata.org/sparql
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 ?oeuvre (COUNT(?edition) AS ?nbEdition) ?oeuvreLabel WHERE {
?oeuvre wdt:P747 ?edition ; wdt:P50 wd:Q535 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?oeuvre ?oeuvreLabel
ORDER BY DESC(?nbEdition)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?edition"):::projected
v4("?nbEdition")
v2("?oeuvre"):::projected
c5(["bd:serviceParam"]):::iri
c3(["wd:Q535"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P747"--> v3
v2 --"wdt:P50"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end
bind1[/"count(?edition)"/]
v3 --o bind1
bind1 --as--o v4