query-c3752ea9e29068a9ed5d25c8c0c66325

rq turtle/ttl

title: (Belgische) wetenschappelijke instellingen SELECT ?item ?itemLabel ?active WHERE { ?item wdt:P31 wd:Q2288140. OPTIONAL { ?item wdt:P576 ?dis } OPTIONAL { ?item wdt:P1366 ?rep } BIND(!(BOUND(?dis)|| BOUND(?rep)) AS ?active) SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,fr,de,en". } } ORDER BY ?itemLabel

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#>
#title: (Belgische) wetenschappelijke instellingen
SELECT ?item ?itemLabel ?active WHERE {
  ?item wdt:P31 wd:Q2288140.
  OPTIONAL { ?item wdt:P576 ?dis }
  OPTIONAL { ?item wdt:P1366 ?rep }
  BIND(!(BOUND(?dis)|| BOUND(?rep)) AS ?active)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "nl,fr,de,en". }
} ORDER BY ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?active"):::projected v3("?dis") v2("?item"):::projected v1("?itemLabel"):::projected v4("?rep") c6(["bd:serviceParam"]):::iri c8(["nl,fr,de,en"]):::literal c2(["wd:Q2288140"]):::iri v2 --"wdt:P31"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P576".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P1366".-> v4 end bind0[/"not (bound(?dis) || bound(?rep))"/] v3 --o bind0 v4 --o bind0 bind0 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end