You can try the following Cypher query to get the number of relationships by relationship type.
MATCH ()-[r]-() RETURN TYPE(r) AS relationshipType, COUNT(r) AS relationshipCount;
MATCH ()-[r]-()
RETURN TYPE(r) AS relationshipType, COUNT(r) AS relationshipCount;