query-37d914aa5599be21439c3e6553baa9fb

rq turtle/ttl

(Q953806)bus stop

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#>
SELECT ?property ?propertyLabel (COUNT(*) AS ?count) WHERE {
  ?bus_stop wdt:P31/wdt:P279* wd:Q953806 ;
           ?p [ ] .
  ?property a wikibase:Property;
            wikibase:claim ?p.
  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; v2("?bus_stop") v5("?count") v3("?p") v4("?property"):::projected a2((" ")) a1((" ")) c8(["bd:serviceParam"]):::iri c5(["wikibase:Property"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q953806"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 -->v3--> a2 v4 --"a"--> c5 v4 --"wikibase:claim"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind1[/"count(*)"/] bind1 --as--o v5