query-297de22558cc3d72af77d628aa879cbf

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title:P8034 by number of external identifiers
#defaultView:LineChart
SELECT ?ids (COUNT(DISTINCT ?item) AS ?count) WHERE {

  ?item wdt:P8034 ?id .
  ?item wikibase:identifiers ?ids .
}
GROUP BY ?ids
ORDER BY ?ids

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?id") v1("?ids"):::projected v2("?item"):::projected v2 --"wdt:P8034"--> v3 v2 --"wikibase:identifiers"--> v1 bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v4