query-adc4500c106dca955a257753a5a3dde1
Visual art works by African-American women
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#>
#defaultView:Graph
SELECT ?person ?personLabel ?personimage ?work ?workLabel ?workimage WHERE {
?person wdt:P172 wd:Q49085 ; # African American
wdt:P21 wd:Q6581072 ; # women
wdt:P106/wdt:P279* wd:Q3391743 . # visual artists
OPTIONAL{ ?person wdt:P18 ?personimage }
?work wdt:P170 ?person . # and their work
OPTIONAL{ ?work wdt:P18 ?workimage }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?person"):::projected
v2("?personimage"):::projected
v3("?work"):::projected
v4("?workimage"):::projected
a1((" "))
c7(["wd:Q3391743"]):::iri
c4(["wd:Q6581072"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
c11(["bd:serviceParam"]):::iri
c2(["wd:Q49085"]):::iri
v1 --"wdt:P172"--> c2
v1 --"wdt:P21"--> c4
v1 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v2
end
v3 --"wdt:P170"--> v1
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end