query-8a907f59c99c6584632d5c8ac106ef02
Propertiesinstance of (P31)subclass of (P279)applies to jurisdiction (P1001)
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#>
SELECT DISTINCT ?country ?countryLabel ?office ?officeLabel
WHERE {
?country wdt:P31 wd:Q185441 . # for all EU member states
OPTIONAL {
?office wdt:P279* wd:Q4018482 ; # find any subclass of "education minister"
wdt:P1001 ?country . # with that jurisdiction
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
ORDER BY ?countryLabel ?officeLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country"):::projected
v1("?countryLabel"):::projected
v4("?office"):::projected
v2("?officeLabel"):::projected
c2(["wd:Q185441"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c4(["wd:Q4018482"]):::iri
v3 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."wdt:P279".-> c4
v4 --"wdt:P1001"--> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end