query-b63f90898f1602f884fcec1aec3c762d
403 (auxiliary) WFM Dictionary No.
Use at
- https://query.wikidata.org/sparql
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#>
#Minerals by type locality
#defaultView:BubbleChart
SELECT ?locality ?localityLabel ?count
WHERE
{
{
SELECT ?locality (COUNT(?mineral ) AS ?count)
WHERE {
?mineral wdt:P279* wd:Q7946 .
?mineral wdt:P2695 ?locality .
}
GROUP BY ?locality
}
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;
v4("?count"):::projected
v3("?locality"):::projected
v2("?mineral")
c5(["bd:serviceParam"]):::iri
c7(["en"]):::literal
c2(["wd:Q7946"]):::iri
v2 --"wdt:P279"--> c2
v2 --"wdt:P2695"--> v3
bind1[/"count(?mineral)"/]
v2 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end