query-410ea5bbf166be5072263792c19b8388
title: Federal Public Services and Ministries (should be 12) SELECT ?item ?itemLabel WHERE { VALUES ?type { wd:Q107637429 wd:Q1846372 } ?item wdt:P31 ?type . MINUS { ?item wdt:P576 [] } MINUS { ?item wdt:P1366 [] } 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: Federal Public Services and Ministries (should be 12)
SELECT ?item ?itemLabel WHERE {
VALUES ?type { wd:Q107637429 wd:Q1846372 }
?item wdt:P31 ?type .
MINUS { ?item wdt:P576 [] }
MINUS { ?item wdt:P1366 [] }
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;
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?type")
a1((" "))
a2((" "))
c5(["bd:serviceParam"]):::iri
c7(["nl,fr,de,en"]):::literal
bind0[/VALUES ?type/]
bind0-->v2
bind00(["wd:Q107637429"])
bind00 --> bind0
bind01(["wd:Q1846372"])
bind01 --> bind0
v3 --"wdt:P31"--> v2
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P576"--> a1
end
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P1366"--> a2
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end