query-2722b1fce7b731f41ef517d8840dc183
Raza1995
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/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?genderLabel ?article
{
?item wdt:P31 wd:Q5 . # ?item is human
OPTIONAL { ?item wdt:P21 ?gender . }
?article schema:about ?item .
?article schema:isPartOf <https://en.wikipedia.org/> .
?article wikibase:badge wd:Q17437796 . # ?article is a featured article
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v2("?gender")
v1("?item"):::projected
c6([https://en.wikipedia.org/]):::iri
c10(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c8(["wd:Q17437796"]):::iri
v1 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P21".-> v2
end
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c6
v3 --"wikibase:badge"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end