query-46e710e44e38851303c3813676afb91a
All posts ever part of Scottish Cabinet
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 ?post ?postLabel {
?cabinet wdt:P31 wd:Q640506 ; wdt:P1001 wd:Q22; wdt:P571 ?inception .
?cabinet wdt:P2670 ?post .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY ?postLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?cabinet")
v3("?inception")
v4("?post"):::projected
v1("?postLabel"):::projected
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c4(["wd:Q22"]):::iri
c2(["wd:Q640506"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1001"--> c4
v2 --"wdt:P571"--> v3
v2 --"wdt:P2670"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end