query-5fea34ece9d6245bdc35fe3baf5174a2
title: (Belgische) openbare instellingen van sociale zekerheid (OISZ's) SELECT ?item ?itemLabel ?active WHERE { ?item wdt:P31 wd:Q107637441. 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
- https://query.wikidata.org/sparql
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) openbare instellingen van sociale zekerheid (OISZ's)
SELECT ?item ?itemLabel ?active WHERE {
?item wdt:P31 wd:Q107637441.
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")
c2(["wd:Q107637441"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["nl,fr,de,en"]):::literal
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