query-185b80817a81109a5c78e0241ea927d7
Property usage
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ontolex: <http://www.w3.org/ns/lemon/ontolex#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
?count
?property ?propertyLabel ?propertyDescription
WHERE {
{
SELECT
(COUNT(*) AS ?count)
?direct_property
WHERE {
[] a ontolex:LexicalSense ;
?direct_property [] .
}
GROUP BY ?direct_property
} ?property wikibase:directClaim ?direct_property .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?count"):::projected
v2("?direct_property")
v3("?property"):::projected
a1((" "))
a2((" "))
c2(["ontolex:LexicalSense"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
a1 --"a"--> c2
a1 -->v2--> a2
bind1[/"count(*)"/]
bind1 --as--o v3
v3 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end