query-42d54037f3ef6dddcb2245fa64f2c57b

rq turtle/ttl

:title: List of properties maintained by the WikiProject SELECT DISTINCT ?property ?propertyLabel (COUNT(DISTINCT ?entity) AS ?count) WHERE { ?entity wdt:P6104 wd:Q56241615 . ?entity ?p [ ] . ?property a wikibase:Property; wikibase:claim ?p. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } GROUP BY ?property ?propertyLabel ORDER BY DESC(?count)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#:title: List of properties maintained by the WikiProject
SELECT DISTINCT ?property ?propertyLabel (COUNT(DISTINCT ?entity) AS ?count) WHERE {
  ?entity wdt:P6104 wd:Q56241615 .
  ?entity ?p [ ] .
  ?property a wikibase:Property;
              wikibase:claim ?p.
  SERVICE wikibase:label { bd:serviceParam wikibase: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; v5("?count") v2("?entity"):::projected v3("?p") v4("?property"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c2(["wd:Q56241615"]):::iri c4(["wikibase:Property"]):::iri c9(["en"]):::literal v2 --"wdt:P6104"--> c2 v2 -->v3--> a1 v4 --"a"--> c4 v4 --"wikibase:claim"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(?entity)"/] v2 --o bind1 bind1 --as--o v5