mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
This commit includes the following changes: - Refactored all data repositories in `internal/data/sql/` to use a consistent `sql` package and to align with the new `domain` models. - Fixed the GraphQL structure by moving the server creation logic from `internal/app` to `cmd/api`, which resolved an import cycle. - Corrected numerous incorrect import paths for packages like `graph`, `linguistics`, `syncjob`, and the legacy `models` package. - Resolved several package and function redeclaration errors. - Removed legacy migration code.
30 lines
704 B
Go
30 lines
704 B
Go
package sql
|
|
|
|
import (
|
|
"context"
|
|
"gorm.io/gorm"
|
|
"tercul/internal/domain/city"
|
|
)
|
|
|
|
type cityRepository struct {
|
|
domain.BaseRepository[domain.City]
|
|
db *gorm.DB
|
|
}
|
|
|
|
// NewCityRepository creates a new CityRepository.
|
|
func NewCityRepository(db *gorm.DB) city.CityRepository {
|
|
return &cityRepository{
|
|
BaseRepository: NewBaseRepositoryImpl[domain.City](db),
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// ListByCountryID finds cities by country ID
|
|
func (r *cityRepository) ListByCountryID(ctx context.Context, countryID uint) ([]domain.City, error) {
|
|
var cities []domain.City
|
|
if err := r.db.WithContext(ctx).Where("country_id = ?", countryID).Find(&cities).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
return cities, nil
|
|
}
|