query-8cb1e2deae305b7cadb9474ffb2be7f9

rq turtle/ttl

title:Query con conteggio (COUNT) SELECT ?item ?itemLabel (COUNT(?figlio) AS ?numero) WHERE { ?item wdt:P106 wd:Q13418253. ?item wdt:P40 ?figlio . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?item ?itemLabel

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#>
#title:Query con conteggio (COUNT)
SELECT ?item ?itemLabel (COUNT(?figlio) AS ?numero)
WHERE {
  ?item wdt:P106 wd:Q13418253.
  ?item wdt:P40 ?figlio .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?figlio"):::projected v1("?item"):::projected v3("?numero") c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q13418253"]):::iri v1 --"wdt:P106"--> c2 v1 --"wdt:P40"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?figlio)"/] v2 --o bind1 bind1 --as--o v3