query-f1694036a03475f31ae36e437dc9540a

rq turtle/ttl

TEMPLATE={ "template": { "en": "Architectural works 'from' ?country" }, "variables": { "?country": { "query": "SELECT ?id WHERE { ?id wdt:P31 wd:Q6256. }" } } } SELECT DISTINCT ?item WHERE { VALUES ?country {wd:Q40 wd:Q39 wd:Q183} ?item wdt:P84 ?architect. ?architect wdt:P27 ?country. }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#TEMPLATE={ "template": { "en": "Architectural works 'from' ?country" }, "variables": { "?country": { "query": "SELECT ?id WHERE { ?id wdt:P31 wd:Q6256. }" } } }
SELECT DISTINCT ?item WHERE {
  VALUES ?country {wd:Q40 wd:Q39 wd:Q183}
  ?item wdt:P84 ?architect.
  ?architect wdt:P27 ?country.
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?architect") v1("?country") v2("?item"):::projected bind0[/VALUES ?country/] bind0-->v1 bind00(["wd:Q40"]) bind00 --> bind0 bind01(["wd:Q39"]) bind01 --> bind0 bind02(["wd:Q183"]) bind02 --> bind0 v2 --"wdt:P84"--> v3 v3 --"wdt:P27"--> v1