query-c080acf4734c37c95e18e5af5275caa9

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?object ?objectLabel ?count WHERE {
  {
    SELECT ?object (COUNT(DISTINCT ?a) AS ?count) WHERE { ?a wdt:P1402 ?object. }
    GROUP BY ?object
    HAVING (?count > 1 )
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC (?count) (?objectLabel)
LIMIT 500

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?a") v5("?count"):::projected v4("?object"):::projected v2("?objectLabel"):::projected c4(["bd:serviceParam"]):::iri c6(["en"]):::literal f0[["?count > '1^^xsd:integer'"]] f0 --> v5 v3 --"wdt:P1402"--> v4 bind2[/"count(?a)"/] v3 --o bind2 bind2 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end