query-a2d606fdc5c7b88094bfe0b57f3cfe6b

rq turtle/ttl

La personne ayant le plus grand nombre d'enfants portant le même nom qu'elle PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema# PREFIX wd: http://www.wikidata.org/entity/ PREFIX wdt: http://www.wikidata.org/prop/direct/ SELECT ?person ?personLabel (COUNT(distinct ?descendant) AS ?count) WHERE { ?person wdt:P31 wd:Q5; # être un humain wdt:P40 ?descendant.

?person rdfs:label ?personLabel. ?descendant rdfs:label ?descendantLabel. FILTER (?personLabel = ?descendantLabel) } GROUP BY ?person ?personLabel ORDER BY DESC(?count)

Use at

#La personne ayant le plus grand nombre d'enfants portant le même nom qu'elle
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?person ?personLabel (COUNT(distinct ?descendant) AS ?count)
WHERE {
  ?person wdt:P31 wd:Q5; # être un humain
         wdt:P40 ?descendant.

  ?person rdfs:label ?personLabel.
  ?descendant rdfs:label ?descendantLabel.
  FILTER (?personLabel = ?descendantLabel)
}
GROUP BY ?person ?personLabel
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count") v5("?descendant"):::projected v3("?descendantLabel") v4("?person"):::projected v2("?personLabel"):::projected c2(["wd:Q5"]):::iri f0[["?personLabel = ?descendantLabel"]] f0 --> v2 f0 --> v3 v4 --"wdt:P31"--> c2 v4 --"wdt:P40"--> v5 v4 --"rdfs:label"--> v2 v5 --"rdfs:label"--> v3 bind2[/"count(?descendant)"/] v5 --o bind2 bind2 --as--o v6