query-d8e83158c22bd42b91a9ecb72a2c7beb
Propertiesaward received (P166)sex or gender (P21)image (P18)
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?label ?_image WHERE {
?item wdt:P166 wd:Q737051.
?item wdt:P21 wd:Q6581072.
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
?item rdfs:label ?label
}
OPTIONAL { ?item wdt:P18 ?_image. }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?_image"):::projected
v1("?item"):::projected
v2("?label"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q737051"]):::iri
c8(["en"]):::literal
c4(["wd:Q6581072"]):::iri
v1 --"wdt:P166"--> c2
v1 --"wdt:P21"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
v1 --"rdfs:label"--> v2
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end