query-28aa275e97a5793b6c7944baac7a4970

rq turtle/ttl

properties with most “statement disputed by” qualifiers on statements SELECT ?property ?propertyLabel (COUNT(?statement) AS ?count) WHERE { ?property a wikibase:Property; wikibase:claim ?p. ?entity ?p ?statement. ?statement pq:P1310 []. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } GROUP BY ?property ?propertyLabel ORDER BY DESC(?count)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# properties with most “statement disputed by” qualifiers on statements
SELECT ?property ?propertyLabel (COUNT(?statement) AS ?count) WHERE {
  ?property a wikibase:Property;
            wikibase:claim ?p.
  ?entity ?p ?statement.
  ?statement pq:P1310 [].
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?property ?propertyLabel
ORDER BY DESC(?count)

Query found at

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