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.
19 lines
634 B
Go
19 lines
634 B
Go
package work
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// WorkRepository defines CRUD methods specific to Work.
|
|
type WorkRepository interface {
|
|
domain.BaseRepositoryRepository[domain.Work]
|
|
|
|
FindByTitle(ctx context.Context, title string) ([]domain.Work, error)
|
|
FindByAuthor(ctx context.Context, authorID uint) ([]domain.Work, error)
|
|
FindByCategory(ctx context.Context, categoryID uint) ([]domain.Work, error)
|
|
FindByLanguage(ctx context.Context, language string, page int) (*, error)
|
|
GetWithTranslations(ctx context.Context, id uint) (*domain.Work, error)
|
|
ListWithTranslations(ctx context.Context, page int) (*, error)
|
|
}
|