query-9740644d786a2d5f6893eb74d5422ad7

rq turtle/ttl

Femmes nées dans le Puy-de-Dôme

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 ?item ?itemLabel ?linkcount
WHERE {
  # personne née dans une ville du Puy-de-Dôme
  ?item wdt:P31 wd:Q5 ;
        # enchaine les propriétés 
        wdt:P19 [ wdt:P131 wd:Q12694 ] .
  ?item wdt:P21 wd:Q6581072 . 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr,en". }
  OPTIONAL {?item wikibase:sitelinks ?linkcount .} # count of sitelinks
}
  ORDER BY DESC(?linkcount) ?item
       LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?linkcount"):::projected a1((" ")) c4(["wd:Q12694"]):::iri c9(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c11(["fr,en"]):::literal c7(["wd:Q6581072"]):::iri v2 --"wdt:P31"--> c2 a1 --"wdt:P131"--> c4 v2 --"wdt:P19"--> a1 v2 --"wdt:P21"--> c7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wikibase:sitelinks".-> v1 end