query-18ebcfce118e7b38e31119da416ae21c
Numero di opere letterarie e di tutte gli item nelle sue sottoclassi in Wikidata SELECT (COUNT(?item) AS ?count) WHERE { ?item wdt:P31/wdt:P279 wd:Q7725634 . # (P31) è di tipo (Q7725634) opera letteraria o una sua sottoclasse qualsiasi (P279) }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Numero di opere letterarie e di tutte gli item nelle sue sottoclassi in Wikidata
SELECT (COUNT(?item) AS ?count)
WHERE {
?item wdt:P31/wdt:P279* wd:Q7725634 . # (P31) è di tipo (Q7725634) opera letteraria o una sua sottoclasse qualsiasi (P279*)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count")
v1("?item"):::projected
a1((" "))
c3(["wd:Q7725634"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
bind1[/"count(?item)"/]
v1 --o bind1
bind1 --as--o v2