query-c62ec0633433f5067abfac6e914c41f8
*
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?statements (COUNT(*) AS ?cnt) WHERE {
?item wdt:P496 ?orcid; wikibase:statements ?statements .
} GROUP BY ?statements ORDER BY ASC(?statements)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?cnt")
v2("?item")
v3("?orcid")
v1("?statements"):::projected
v2 --"wdt:P496"--> v3
v2 --"wikibase:statements"--> v1
bind1[/"count(*)"/]
bind1 --as--o v4