query-78518aa63bbe562e5b4fb7d89f65facd

rq turtle/ttl

Women without image, from a particular country, ordered by the number of Wikimedia projects in which they appear SELECT ?woman ?womanLabel ?linkcount WHERE { ?woman wdt:P31 wd:Q5 ; # Instance of human being... wdt:P21 wd:Q6581072 . # ...whose sex or gender is female. ?woman wikibase:sitelinks ?linkcount . # Count the number of sitelinks to different Wikipedias and other projects. { ?woman wdt:P19/wdt:P131* wd:Q77 . } # The woman was born in Uruguay or in a place located in the administrative territorial entity of Uruguay... UNION # ...or... { ?woman wdt:P27 wd:Q77 . } # ...her country of citizenship is Uruguay. MINUS { ?woman wdt:P18 ?image # Exclude if she has an image in her Wikidata item. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?woman ?womanLabel ?linkcount # Group to avoid duplicate results. ORDER BY DESC(?linkcount) # Order by descending number of sitelinks. More sitelinks suggest more relevance.

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#>
# Women without image, from a particular country, ordered by the number of Wikimedia projects in which they appear
SELECT ?woman ?womanLabel ?linkcount
WHERE
{
  ?woman wdt:P31 wd:Q5 ;   # Instance of human being...
         wdt:P21 wd:Q6581072 .  # ...whose sex or gender is female.
  ?woman wikibase:sitelinks ?linkcount .  # Count the number of sitelinks to different Wikipedias and other projects.
  { ?woman wdt:P19/wdt:P131* wd:Q77 . }  # The woman was born in Uruguay or in a place located in the administrative territorial entity of Uruguay...
  UNION  # ...or...
  { ?woman wdt:P27 wd:Q77 . }  # ...her country of citizenship is Uruguay.
  MINUS {
  ?woman wdt:P18 ?image  # Exclude if she has an image in her Wikidata item.
  } 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?woman ?womanLabel ?linkcount  # Group to avoid duplicate results.
ORDER BY DESC(?linkcount)  # Order by descending number of sitelinks. More sitelinks suggest more relevance.

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?image") v1("?linkcount"):::projected v2("?woman"):::projected a1((" ")) c8(["wd:Q77"]):::iri c4(["wd:Q6581072"]):::iri c12(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c14(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P21"--> c4 v2 --"wikibase:sitelinks"--> v1 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P27"--> c8 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v2 --"wdt:P19"--> a1 a1 --"wdt:P131"--> c8 end union0r <== or ==> union0l end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P18"--> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end