query-e08ec0ce885ac13077693499d3ca408a

rq turtle/ttl

TODO

Use at

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:Map
#Rembrandts
SELECT ?painting ?paintingLabel ?collection ?collectionLabel ?image ?coord
WHERE {
  ?painting wdt:P31 wd:Q3305213 .
  ?painting wdt:P170 wd:Q5598 .
  ?painting wdt:P195 ?collection .

  OPTIONAL { ?collection wdt:P625 ?coord }

  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("?collection"):::projected v3("?coord"):::projected v1("?painting"):::projected c2(["wd:Q3305213"]):::iri c8(["bd:serviceParam"]):::iri c4(["wd:Q5598"]):::iri c10(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P170"--> c4 v1 --"wdt:P195"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P625".-> v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end