countContactsByGroupId

@Query(value = "SELECT COUNT(c) FROM ContactGroup g JOIN g.contacts c WHERE g.id = :groupId")
abstract fun countContactsByGroupId(groupId: String): Long(source)