Skip to content

5주차 미션 [도토]#12

Open
yewon20804 wants to merge 6 commits into
mainfrom
week5/doto
Open

5주차 미션 [도토]#12
yewon20804 wants to merge 6 commits into
mainfrom
week5/doto

Conversation

@yewon20804
Copy link
Copy Markdown
Collaborator

API 구현 목록

    1. 회원가입 API
  • 1-1. 특정 지역에 가게 추가하기 API
  • 1-2. 가게에 리뷰 추가하기 API
  • 1-3. 가게에 미션 추가하기 API
  • 1-4. 가게의 미션을 도전 중인 미션에 추가(미션 도전하기) API

참고

postman 확인 이미지는 노션에 추가

@yewon20804 yewon20804 self-assigned this Apr 30, 2026
@yewon20804 yewon20804 linked an issue Apr 30, 2026 that may be closed by this pull request
export const getStoreById = async (storeId: number): Promise<any | null> => {
const conn = await pool.getConnection();
try {
const [rows] = await pool.query<RowDataPacket[]>(
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

conn 연결 후에는 pool.query가 아닌 conn.query로 쓰는 것이 좋습니다!

@eunwoohwang eunwoohwang mentioned this pull request May 14, 2026
6 tasks
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.

게시글 작성 API 구현하기

2 participants