Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor repositories to collection-oriented #56

Open
gregbrowndev opened this issue Sep 9, 2023 · 0 comments
Open

Refactor repositories to collection-oriented #56

gregbrowndev opened this issue Sep 9, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@gregbrowndev
Copy link
Owner

gregbrowndev commented Sep 9, 2023

Repositories should follow a collection-oriented style with a save function to handle upserting the object as a unit of state.

Example:

trait JobRepository[F[_]: MonadCancelThrow] {
  def nextIdentity(): F[JobId]

  def save(job: Job): EitherT[F, String, Unit]

  def delete(job: Job): EitherT[F, String, Unit]

  def get(id: JobId): EitherT[F, String, Job]

  def find(
      filterOpt: Option[JobFilter],
      paginationOpt: Option[Pagination]
  ): F[List[Job]]
}
@gregbrowndev gregbrowndev added the enhancement New feature or request label Sep 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant