query-aebae6346bca92438fee4df46eafb8ee

rq turtle/ttl

in each property. In my opinion, this query doesn't present relevant information but when I was writing it, I came up with the idea of the query that follows this one. (P2302)property constraint The following query gets the count of sum of number of qualifiers used in values of

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
  ?property
  ?propertyLabel
  ?count
{
   {
  SELECT
    ?property
    (COUNT(*) AS ?count)
  {
     {
  SELECT ?property {
    INCLUDE %0.
    VALUES ?rank {
      wikibase:PreferredRank
      wikibase:NormalRank
    }
  }
}
  }
  GROUP BY ?property
}
  SERVICE wikibase:label {bd:serviceParam wikibase:language "[AUTO_LANGUAGE]"}.
}
ORDER BY DESC(?count)

Query found at