query-62b6f485211f5e0c247638ab918de3b0
TODO
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?participantLabel (CONTAINS(?participantLabel, "Women's") as ?x) WHERE {
?item wdt:P31 wd:Q5;
wdt:P106 wd:Q13141064;
wdt:P1344 ?participant .
MINUS { ?item wdt:P21 [] } .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
} .
} ORDER BY DESC(?x)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v3("?participant")
v4("?x")
a1((" "))
c8(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c10(["en"]):::literal
c4(["wd:Q13141064"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P106"--> c4
v2 --"wdt:P1344"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P21"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind1[/"contains(?participantLabel,'Women's')"/]
null --o bind1
bind1 --as--o v4