query-3f49b7a58a895b04e449e1ebf82b4f78

rq turtle/ttl

الأشياء/الناس مع أكثر الأطفال Things/people with most children Things/people with most children Věci/lidé s nejvíce dětmi Things/people with most children Dinge und Personen mit den meisten Kindern Things/people with most children Things/people with most children Things/people with most children Things/people with most children Things/people with most children Choses ou personnes avec le plus d’enfants דברים/אנשים עם הכי הרבה ילדים Things/people with most children Things/people with most children Cose/persone con più figli 多くの子を持つモノ/ヒト Things/people with most children Things/people with most children Things/people with most children Things/people with most children Dingen/mensen met de meeste kinderen Things/people with most children Things/people with most children Things/people with most children Things/people with most children Things/people with most children Saker/folk med flest barn Things/people with most children Things/people with most children Things/people with most children Things/people with most children 最多孩子的人或物

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?parent ?parentLabel ?count
WHERE
{
  {
    SELECT ?parent (COUNT(?child) AS ?count)
    WHERE
    {
      ?parent wdt:P40 ?child.
    }
    GROUP BY ?parent
    ORDER BY DESC(?count)
    LIMIT 10
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC(?count)
LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?child") v4("?count"):::projected v2("?parent"):::projected c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v2 --"wdt:P40"--> v3 bind1[/"count(?child)"/] v3 --o bind1 bind1 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end