query-77e2c476fabeb85cd9573bd701ad913f

rq turtle/ttl

Usage

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription ?gemeenteLabel ?BRIN ?website {
  ?item wdt:P3061 ?BRIN . 
  OPTIONAL {?item wdt:P131 ?gemeente } .
  OPTIONAL {?item wdt:P856 ?website } .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "nl" } .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?BRIN"):::projected v3("?gemeente") v1("?item"):::projected v4("?website"):::projected c5(["bd:serviceParam"]):::iri c7(["nl"]):::literal v1 --"wdt:P3061"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P131".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P856".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end