query-4da490a1166635c39f0e0af0a5487708
Graph of Boston neighborhood public art and their creators
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 their creators
#defaultView:Graph
SELECT DISTINCT ?art ?artLabel ?artImage ?artist ?artistLabel ?artistImage
WHERE
{
# work of art must be part of the Neighborhood Public Art in Boston WikiProject
?art wdt:P5008 wd:Q108040915;
wdt:P136 wd:Q557141;
wdt:P170 ?artist.
optional{?art wdt:P18 ?artImage}
optional{?artist wdt:P18 ?artistImage.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?art"):::projected
v3("?artImage"):::projected
v2("?artist"):::projected
v4("?artistImage"):::projected
c8(["bd:serviceParam"]):::iri
c2(["wd:Q108040915"]):::iri
c4(["wd:Q557141"]):::iri
c10(["#91;AUTO_LANGUAGE#93;"]):::literal
v1 --"wdt:P5008"--> c2
v1 --"wdt:P136"--> c4
v1 --"wdt:P170"--> v2
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;
c8 --"wikibase:language"--> c10
end