query-a650623b8e846d814eaea78a1a99b5ce
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT *
WHERE
{
{
SELECT DISTINCT ?rdftype (COUNT(*) as ?count)
WHERE
{
_:b2 rdf:type ?rdftype
}
GROUP BY ?rdftype
} MINUS { _:b7 wikibase:novalue ?rdftype }
}
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("?rdftype"):::projected
a1((" "))
a2((" "))
a1 --"a"--> v2
bind1[/"count(*)"/]
bind1 --as--o v3
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
a2 --"wikibase:novalue"--> v2
end