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

[feat] 족보 주인 닉네임 조회 API #231

Merged
merged 3 commits into from
Dec 21, 2024
Merged

Conversation

PicturePark1101
Copy link
Contributor

Related Issue 📌

close #230

Description ✔️

  • 족보 주인 닉네임 조회 API입니다.

To Reviewers

  • favoriteId를 통해 족보 주인의 ID(FK)를, 그 ID로 UserInfo의 nickname을 조회합니다.
Hibernate: 
    select
        f1_0.favorite_id,
        f1_0.created_at,
        f1_0.detail,
        f1_0.image_type,
        f1_0.name,
        f1_0.updated_at,
        f1_0.user_id 
    from
        favorite f1_0 
    where
        f1_0.favorite_id=?
Hibernate: 
    select
        ui1_0.user_info_id,
        ui1_0.nickname,
        ui1_0.refresh_token,
        ui1_0.user_id 
    from
        user_info ui1_0 
    where
        ui1_0.user_id=?

@PicturePark1101 PicturePark1101 merged commit 7b5942d into develop Dec 21, 2024
1 check passed
@PicturePark1101 PicturePark1101 deleted the feat/230 branch December 21, 2024 07:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] 족보 주인 닉네임 API 구현
2 participants