query-4e0a7cd729ce7342077f942abdb151f3

rq turtle/ttl

Women with most sitelinks and no image born in 1921 or later Women with most sitelinks and no image born in 1921 or later Femmes sans illustration avec le plus de liens de sites nées après 1921 Women with most sitelinks and no image born in 1921 or later Women with most sitelinks and no image born in 1921 or later Vrouwen met de meeste sitelinks en geen afbeelding geboren in 1921 of later Kvinnor med flest webbplatslänkar utan bilder födda 1921 eller senare Women with most sitelinks and no image born in 1921 or later Women with most sitelinks and no image born in 1921 or later 有最多站点链接且没有图片的1921年或更晚出生的女性

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?s ?desc ?linkcount
WHERE
{
  ?s wdt:P31 wd:Q5 ;   # human
     wdt:P21 wd:Q6581072 ;  # gender: female
     wdt:P569 ?born .
  FILTER (?born >= "1921-01-01T00:00:00Z"^^xsd:dateTime) .
  ?s wikibase:sitelinks ?linkcount .
  MINUS {
    ?s wdt:P18 []  # exclude if there is an image
  }
?s rdfs:label ?desc FILTER(lang(?desc)="en").
}
GROUP BY ?s ?desc ?linkcount
ORDER BY DESC(?linkcount)
LIMIT 50

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?born") v2("?desc"):::projected v1("?linkcount"):::projected v4("?s"):::projected a1((" ")) c4(["wd:Q5"]):::iri c6(["wd:Q6581072"]):::iri f0[["?desc = 'en'"]] f0 --> v2 f1[["?born >= '1921-01-01T00:00:00Z^^xsd:dateTime'"]] f1 --> v3 v4 --"wdt:P31"--> c4 v4 --"wdt:P21"--> c6 v4 --"wdt:P569"--> v3 v4 --"wikibase:sitelinks"--> v1 subgraph minus2["MINUS"] style minus2 stroke-width:6px,fill:pink,stroke:red; v4 --"wdt:P18"--> a1 end v4 --"rdfs:label"--> v2