query-c09f4fdc578223cfd839d41be6ee5131
Multiple dates of death not contained in the result of this query: (Q28024223)Ismet Ibrahimoglu Why is
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 ?item ?itemLabel ?count ?sample1 ?sample2
WHERE
{
{
SELECT ?item (COUNT(?value) AS ?count) (MIN(?value) AS ?sample1) (MAX(?value) AS ?sample2) {
?item wdt:P106 wd:Q10873124 .
?item wdt:P570 ?value .
} GROUP BY ?item HAVING ( ?count > 1 )
} .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" } .
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count"):::projected
v2("?item"):::projected
v4("?sample1"):::projected
v5("?sample2"):::projected
v3("?value")
c6(["bd:serviceParam"]):::iri
c3(["wd:Q10873124"]):::iri
c8(["de,en"]):::literal
f0[["?count > '1^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P106"--> c3
v2 --"wdt:P570"--> v3
bind4[/"count(?value)"/]
v3 --o bind4
bind4 --as--o v4
bind5[/"min(?value)"/]
v3 --o bind5
bind5 --as--o v4
bind6[/"max(?value)"/]
v3 --o bind6
bind6 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end