query-d473863257bb8292e49b0cac7311b86c

rq turtle/ttl

Properties most often applied to references.outdatedThis page is

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?prop ?propLabel ?count WHERE {
    {
        SELECT ?prop (COUNT(?ref) AS ?count) WHERE {

           ?prop wikibase:reference ?pr_pred .     # the reference-specific form of a property
           ?ref ?pr_pred ?pr_obj .                 # to be found in any triple (any such triples will apply to references)
        }  GROUP BY ?pr_pred ?prop
    }
    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; v6("?count"):::projected v5("?pr_obj") v3("?pr_pred") v2("?prop"):::projected v4("?ref") c3(["bd:serviceParam"]):::iri c5(["en"]):::literal v2 --"wikibase:reference"--> v3 v4 -->v3--> v5 bind1[/"count(?ref)"/] v4 --o bind1 bind1 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end