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

좋아요 스킴 초안. Ref #1 #6

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open

Conversation

JeongmyeongzZ
Copy link

close #1


@Repository
public interface LikeRepository extends CrudRepository<Like, String> {
public default Like findByTrackId(String trackId) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기 어떤 코드인지 설명해주실 수 있나요?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

별도로 얘기했으나, 남기는 게 좋을 거 같아 코멘트 남겨둡니다.

현재 trackId가 현재 엔티티 컬럼에 존재하지 않고, 보통 인터페이스에서 컬럼명으로 whereColumn으로 메서드를 정의하면 컴파일 시점에 알아서 관련 코드를 만들어 줍니다.

public Like findByTrackId(String trackId);

그리고, 보통 단일 객체를 찾을 땐 JPA 인터페이스에서 기본적으로 Optional<Entity>를 리턴하는데 이렇게 추가되는 메서드에도 옵셔널을 쓰는 게 좋을 거 같은데 어떨까요?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

코멘트 남겨주셨던 부분은 우선, 삭제했습니다 !


@Repository
public interface LikeRepository extends CrudRepository<Like, String> {
public default Like findByTrackId(String trackId) {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

코멘트 남겨주셨던 부분은 우선, 삭제했습니다 !

type Mutation {
createTrack(input: CreateTrackInput!): Track
likePlaylist(input: likePlaylistInput!): Like
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이부분은 지금 용어가 혼용 돼 있는데 정리가 필요합니당

플레이리스트를 좋아요 누른다 => like playlist로 접근했ㄴ었는데, like 라는 자원을 생성하는 Create playlist like 뭐 이런식으로 섞여있는데 용어를 어떤식으로 정리하면 좋을까요 ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

음 이건 저도 잘 몰라서 레퍼런스를 좀 찾아봤습니다.

해당 질문에 대해선 두 번째 글이 알찬데, 동사를 먼저 쓰라고 하네요.

지금 케이스에선 likePlaylist면 괜찮지않나 싶습니다.

@cr-lgl
Copy link
Member

cr-lgl commented Jan 22, 2021

빌드가.. 깨집니다!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

#card-51118712 좋아요 CRUD 만들기
2 participants