query-af9985c7a9b836d9d4c329516136bb2c
List of wikibase:grammaticalFeatures
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?grammaticalFeature ?grammaticalFeatureLabel (COUNT(DISTINCT ?s) AS ?numOccurs)
WHERE {
?s wikibase:grammaticalFeature ?grammaticalFeature .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?grammaticalFeature ?grammaticalFeatureLabel
ORDER BY DESC(?numOccurs)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?grammaticalFeature"):::projected
v4("?numOccurs")
v2("?s"):::projected
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wikibase:grammaticalFeature"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end
bind1[/"count(?s)"/]
v2 --o bind1
bind1 --as--o v4