You can try the following Cypher query to get the count of nodes for each label. The query will return node labels and their node count.
MATCH (n)RETURN labels(n) as NodeLabel, count(labels(n)) as LabelCount;