query-15e596c24c9f7e663891a357fc02ec05

rq turtle/ttl

TODO

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 ?propertyItemLabel (count(?propertyItem) as ?count) WHERE {
  ?item ?propertyRel ?transport.
  ?transport wdt:P31 wd:Q61927259.
  ?propertyItem wikibase:directClaim ?propertyRel  
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }  
} group by ?propertyItemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count") v1("?item") v4("?propertyItem"):::projected v2("?propertyRel") v3("?transport") c2(["wd:Q61927259"]):::iri c5(["bd:serviceParam"]):::iri c7(["en"]):::literal v1 -->v2--> v3 v3 --"wdt:P31"--> c2 v4 --"wikibase:directClaim"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?propertyItem)"/] v4 --o bind1 bind1 --as--o v5