query-567751a3dde4f784a936c8c6be7f524c
Propertiesarchives at (P485)sex or gender (P21)award received (P166)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 ?person ?personLabel ?image ?awardLabel
WHERE {
?person wdt:P485 wd:Q964035.
?person wdt:P21 wd:Q6581072.
OPTIONAL {?person wdt:P166 ?award}.
OPTIONAL {?person 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;
v2("?award")
v3("?image"):::projected
v1("?person"):::projected
c2(["wd:Q964035"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c4(["wd:Q6581072"]):::iri
v1 --"wdt:P485"--> c2
v1 --"wdt:P21"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P166".-> 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