query-65300efcecdb244e084ef8c6e4ef7aaa

rq turtle/ttl

A qualifier's 'value counts' for a specific property. (P459)determination method or standard qualifier (P1082)population Determination method values. (P459)determination method or standard The following query will display the values used for

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?determinemethod ?determinemethodLabel ?count WHERE {
  {
    SELECT ?determinemethod (COUNT(?determinemethod) AS ?count) WHERE {
      ?s p:P1082 ?popstatement .
      ?popstatement pq:P459 ?determinemethod .
    }
    GROUP BY ?determinemethod
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count"):::projected v4("?determinemethod"):::projected v3("?popstatement") v2("?s") c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v2 --"p:P1082"--> v3 v3 --"p:qualifier/P459"--> v4 bind1[/"count(?determinemethod)"/] v4 --o bind1 bind1 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end