query-b82d31ecd246873df947c330d6df8902

rq turtle/ttl

QueriesLocation of all manor estates with coordinates

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#>
SELECT ?item ?itemLabel ?artistLabel ?location ?locationLabel #added a Label here for artist as well.

WHERE { ?item wdt:P31 wd:Q2116450  . #instance of manor estates 
        ?item wdt:P17 wd:Q145 . #in the UK
        ?item wdt:P625 ?location

       SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } #added labelservice here

      }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?location"):::projected c7(["bd:serviceParam"]):::iri c2(["wd:Q2116450"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q145"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P17"--> c4 v1 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end