query-3b16e7a87f2dd478b692bacec360cd11

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:ImageGrid
select ?item ?itemLabel ?author ?authorLabel ?image {
  values (?movement) {(wd:Q40415)}
  ?author wdt:P135 ?movement .
  ?item wdt:P170 ?author .
  optional { ?item 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("?author"):::projected v4("?image"):::projected v3("?item"):::projected v1("?movement") c5(["bd:serviceParam"]):::iri c7(["en"]):::literal bind0[/VALUES ?movement/] bind0-->v1 bind00(["wd:Q40415"]) bind00 --> bind0 v2 --"wdt:P135"--> v1 v3 --"wdt:P170"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P18".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end