query-eb1817c6728fb3858ac933506666eccd

rq turtle/ttl

Example to find without images

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
SELECT ?item ?itemLabel ?location ?status ?heritageproperty ?identifier WHERE {

  wd:Q167566 wdt:P625 ?KerkLoc .
  SERVICE wikibase:around {
      ?item wdt:P625 ?location .
      bd:serviceParam wikibase:center ?KerkLoc .
      bd:serviceParam wikibase:radius "5" .
  }
  MINUS { ?item wdt:P18 [] } .
  ?item wdt:P1435 ?status .
  ?status wdt:P1687 ?heritageproperty .
  ?heritageproperty wikibase:directClaim ?propertyclaim .
  ?item ?propertyclaim ?identifier .
  #?item ?propertyclaim [] .
  #?property wikibase:claim ?propertyclaim .
  #?property wikibase:propertyType wikibase:ExternalId .
  #?property wdt:P31 wd:Q18618628 .
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en,nl" .
  }
} LIMIT 253

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?KerkLoc") v5("?heritageproperty"):::projected v7("?identifier"):::projected v2("?item"):::projected v3("?location"):::projected v6("?propertyclaim") v4("?status"):::projected a1((" ")) c14(["en,nl"]):::literal c1(["wd:Q167566"]):::iri c4(["bd:serviceParam"]):::iri c7(["5"]):::literal c1 --"wdt:P625"--> v1 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c4 --"wikibase:center"--> v1 c4 --"wikibase:radius"--> c7 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P18"--> a1 end v2 --"wdt:P1435"--> v4 v4 --"wdt:P1687"--> v5 v5 --"wikibase:directClaim"--> v6 v2 -->v6--> v7 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c14 end