query-24d50c03e8ad9b8f6f5e9a63c00a29da
Wrong gender
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 WHERE {
{
SELECT ?item ?itemLabel ?participantLabel (CONTAINS(?participantLabel, "Women") AS ?is_Bangla) WHERE {
?item wdt:P31 wd:Q5; wdt:P106 wd:Q13141064; wdt:P21 wd:Q6581097; wdt:P1344 ?participant .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
} .
}
} .
FILTER( ?is_Bangla = true ) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?is_Bangla")
v2("?item"):::projected
v3("?participant")
c10(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c7(["wd:Q6581097"]):::iri
c12(["en"]):::literal
c5(["wd:Q13141064"]):::iri
f0[["?is_Bangla = 'true^^xsd:boolean'"]]
f0 --> v4
v2 --"wdt:P31"--> c3
v2 --"wdt:P106"--> c5
v2 --"wdt:P21"--> c7
v2 --"wdt:P1344"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end
bind1[/"contains(?participantLabel,'Women')"/]
null --o bind1
bind1 --as--o v4