query-7c58cf9d1303f3a450a7a03f595f20e1

rq turtle/ttl

Propertiessubject named as (P1810)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?p ?propLabel (COUNT(?item) AS ?count)
  WHERE {
    {
    SELECT DISTINCT ?p ?prop
    WHERE {
      ?prop wikibase:propertyType wikibase:ExternalId ;
            wikibase:claim ?p .
    }
    }
    ?item ?p [
      pq:P1810 ?name
    ].
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  }
  GROUP BY ?p ?propLabel
  ORDER BY DESC(?count)
  LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count") v5("?item"):::projected v4("?name") v3("?p"):::projected v2("?prop") a1((" ")) c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wikibase:ExternalId"]):::iri v2 --"wikibase:propertyType"--> c2 v2 --"wikibase:claim"--> v3 a1 --"pq:P1810"--> v4 v5 -->v3--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"count(?item)"/] v5 --o bind1 bind1 --as--o v6