query-ff84d2a78bfd1d4bad09b47a88498755

rq turtle/ttl

PropertiesGlobal Invasive Species Database ID (P5626)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?property ?propertyLabel ?count
WHERE {
   {
  SELECT DISTINCT ?property (COUNT(*) AS ?count) WHERE {
    ?item wdt:P5626 [];
    ?p [ ] .
    ?property a wikibase:Property;
                wikibase:claim ?p.
  }
  GROUP BY ?property 
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
ORDER BY DESC(?count)
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count"):::projected v2("?item") v3("?p") v4("?property"):::projected a1((" ")) a2((" ")) c6(["bd:serviceParam"]):::iri c3(["wikibase:Property"]):::iri c8(["en"]):::literal v2 --"wdt:P5626"--> a1 v2 -->v3--> a2 v4 --"a"--> c3 v4 --"wikibase:claim"--> v3 bind1[/"count(*)"/] bind1 --as--o v5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end