query-d63915aacba307183a3d892d5d1beb88
image (P18), title (P1476), main subject (P921): Properties 06:25, 7 March 2020 (UTC)) talk (Daniel MietchenThanks for any pointers! --
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT (GROUP_CONCAT(DISTINCT ?title) as ?input_for_ordia)
WHERE
{
[] wdt:P921 wd:Q202864 ; wdt:P1476 ?title .
FILTER(lang(?title) = "en" )
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?input_for_ordia")
v1("?title"):::projected
a1((" "))
c3(["wd:Q202864"]):::iri
f0[["?title = 'en'"]]
f0 --> v1
a1 --"wdt:P921"--> c3
a1 --"wdt:P1476"--> v1
bind2[/"?title"/]
v1 --o bind2
bind2 --as--o v2