query-362e7d93b0cbf4ead02e024dc5504dbb
Graph of works of art and people depicted in them
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#>
#title: Works of public art in Boston neighborhoods and the people they depict
#defaultView:Graph
select ?work ?workImage ?workLabel ?depictedPerson ?personImage ?depictedPersonLabel where {
?work wdt:P5008 wd:Q108040915;
wdt:P136 wd:Q557141;
wdt:P180 ?depictedPerson.
?depictedPerson wdt:P31 wd:Q5.
optional{?work wdt:P18 ?workImage}
optional{?depictedPerson wdt:P18 ?personImage.}
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;
v2("?depictedPerson"):::projected
v4("?personImage"):::projected
v1("?work"):::projected
v3("?workImage"):::projected
c10(["bd:serviceParam"]):::iri
c2(["wd:Q108040915"]):::iri
c4(["wd:Q557141"]):::iri
c7(["wd:Q5"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P5008"--> c2
v1 --"wdt:P136"--> c4
v1 --"wdt:P180"--> v2
v2 --"wdt:P31"--> c7
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end