query-df29c16c37517959887d5d46792ead08
Propertiesaward received (P166)sex or gender (P21)occupation (P106)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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?occLabel ?image WHERE {
?item wdt:P166 wd:Q937629.
?item wdt:P21 wd:Q6581072.
OPTIONAL {?item wdt:P106 ?occ.}
OPTIONAL {?item wdt:P18 ?image.}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?image"):::projected
v1("?item"):::projected
v2("?occ")
c8(["bd:serviceParam"]):::iri
c2(["wd:Q937629"]):::iri
c10(["en"]):::literal
c4(["wd:Q6581072"]):::iri
v1 --"wdt:P166"--> c2
v1 --"wdt:P21"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P106".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end