query-5bcd917c9c754f8d8bb302d960311052

rq turtle/ttl

Les œuvres avec le plus d'épigraphes

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 DISTINCT ?work ?workLabel (COUNT(?epi) AS ?count)
WHERE
{
    ?work wdt:P7150 ?epii. # selection de tous les items avec un epigraph pour optimiser la requête
    ?work wdt:P136/wdt:P279* wd:Q9326077.    # filtre pour n'avoir que les oeuvres de l'imaginaire
    OPTIONAL {?work wdt:P7150 ?epi .}   # les oeuvres avec epigraphe
    OPTIONAL {?work wdt:P527 ?work2     # + les parties d'oeuvres avec un epigraphe 
                 {SELECT ?work2 WHERE  { ?work2 wdt:P7150 ?epi. } limit 100000 } }
    SERVICE wikibase:label {bd:serviceParam wikibase:language "en" .}
}
GROUP BY ?work ?workLabel
HAVING (?count > 0)
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count") v4("?epi"):::projected v3("?epii") v2("?work"):::projected v5("?work2") a1((" ")) c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c5(["wd:Q9326077"]):::iri f0[["?count > '0^^xsd:integer'"]] f0 --> v6 v2 --"wdt:P7150"--> v3 v2 --"wdt:P136"--> a1 a1 --"wdt:P279"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P7150".-> v4 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P527".-> v5 v5 --"wdt:P7150"--> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind2[/"count(?epi)"/] v4 --o bind2 bind2 --as--o v6