query-367ebf8150aa5364ef7048f1b5c481a8
donne non presenti su it.wiki ma su altre wiki? da en:Wikipedia:WikiProject_Women_in_Red/Number_of_links SELECT ?item ?linkcount WHERE { hint:Query hint:optimizer "None". hint:Query hint:maxParallel 50 . hint:Query hint:chunkSize 1000 . hint:Query hint:queryEngineChunkHandler "Native" . # Native/Managed hint:Query hint:filterExists "VectoredSubPlan" . # SubQueryLimitOne/VectoredSubPlan ?item wdt:P21 wd:Q6581072 . # gender is female ?item wikibase:sitelinks ?linkcount . FILTER ( ?linkcount >= 7 ) FILTER( ?item NOT IN (wd:Q4617, wd:Q180807, wd:Q234649, wd:Q237119, wd:Q264096, wd:Q270980, wd:Q326474, wd:Q464944, wd:Q468313, wd:Q8265475, wd:Q17413110, wd:Q19940498, wd:Q15397819, wd:Q13406268, wd:Q4115189)) # don’t count those who are redirects or any sandboxes FILTER NOT EXISTS { ?wen schema:about ?item . ?wen schema:isPartOf https://it.wikipedia.org/. } FILTER NOT EXISTS { ?item wdt:P106 wd:Q488111 } # don’t include porn actors ?item wdt:P31 wd:Q5 . # human } ORDER BY DESC(?linkcount) LIMIT 100
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
#donne non presenti su it.wiki ma su altre wiki? da en:Wikipedia:WikiProject_Women_in_Red/Number_of_links
SELECT ?item ?linkcount
WHERE {
# Native/Managed
# SubQueryLimitOne/VectoredSubPlan
?item wdt:P21 wd:Q6581072 . # gender is female
?item wikibase:sitelinks ?linkcount .
FILTER ( ?linkcount >= 7 )
FILTER( ?item NOT IN (wd:Q4617, wd:Q180807, wd:Q234649, wd:Q237119, wd:Q264096, wd:Q270980, wd:Q326474, wd:Q464944, wd:Q468313, wd:Q8265475, wd:Q17413110, wd:Q19940498, wd:Q15397819, wd:Q13406268, wd:Q4115189)) # don’t count those who are redirects or any sandboxes
FILTER NOT EXISTS { ?wen schema:about ?item . ?wen schema:isPartOf <https://it.wikipedia.org/>. }
FILTER NOT EXISTS { ?item wdt:P106 wd:Q488111 } # don’t include porn actors
?item wdt:P31 wd:Q5 . # human
}
ORDER BY DESC(?linkcount)
LIMIT 100