query-105c4a33d3a958d58fec15757061e7b0
Timeout on a query to find humans without gender https://w.wiki/3ojI’m trying to find humans with no gender and an article on Wikipedia in French but it times out:
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?s ?article WHERE {
?s wdt:P31 wd:Q5 .
?article schema:about ?s ; schema:isPartOf <https://fr.wikipedia.org/> .
MINUS { ?s wdt:P21 [] . }
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?s"):::projected
a1((" "))
c2(["wd:Q5"]):::iri
c5([https://fr.wikipedia.org/]):::iri
v1 --"wdt:P31"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P21"--> a1
end