query-391703b574314111bc67c26457e412a8
Disambiguation pages standing in Dutch electionGreat work on adding the election candidates. However, there are a few places where you've marked the details on a disambiguation page rather than the actual candidate:
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 ?item ?itemLabel
{
?item wdt:P3602 ?election; wdt:P31 wd:Q4167410 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "nl" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?election")
v1("?item"):::projected
c3(["wd:Q4167410"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["nl"]):::literal
v1 --"wdt:P3602"--> v2
v1 --"wdt:P31"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end