query-bdd409c8a4fef084182a65a66078133b

rq turtle/ttl

Libellés doublons

Use at

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 ?itemLabel (COUNT(?itemLabel) as ?count) 
WHERE
{
    { ?item wdt:P31/wdt:P279* wd:Q23019040 }  
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}

GROUP BY ?itemLabel
HAVING (?count > 1)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v2("?item") v3("?itemLabel"):::projected a1((" ")) c6(["bd:serviceParam"]):::iri c4(["wd:Q23019040"]):::iri c8(["fr"]):::literal f0[["?count > '1^^xsd:integer'"]] f0 --> v4 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind2[/"count(?itemLabel)"/] v3 --o bind2 bind2 --as--o v4