We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
카테고리를 가게 테이블의 ENUM 컬럼으로 구현할 수도 있었지만, 크게 아래와 같은 두 가지 이유로 테이블을 분리하였다.
(카테고리와 음식점이 M:N 관계라는 점은 차치했을 때)
화면에 직접적으로 나타나지 않은 대상은 최대한 ERD에 포함하지 않고자 했지만, 가게의 “별점” 속성에 대해 얘기해보기 위해서는 리뷰 테이블이 필요하다고 판단하였다.
API는 크게 고민하지 않고 간단하게 작성했다.
/api/categories
GET
/api/stores/{storeId}
/api/stores/{storeId}/menus
/api/stores/{storeId}/menus/{menuId}/options
The text was updated successfully, but these errors were encountered:
No branches or pull requests
✅ ERD
카테고리를 가게 테이블의 ENUM 컬럼으로 구현할 수도 있었지만, 크게 아래와 같은 두 가지 이유로 테이블을 분리하였다.
(카테고리와 음식점이 M:N 관계라는 점은 차치했을 때)
화면에 직접적으로 나타나지 않은 대상은 최대한 ERD에 포함하지 않고자 했지만, 가게의 “별점” 속성에 대해 얘기해보기 위해서는 리뷰 테이블이 필요하다고 판단하였다.
✅ 예시 API
API는 크게 고민하지 않고 간단하게 작성했다.
/api/categories
GET
/api/stores/{storeId}
GET
/api/stores/{storeId}/menus
GET
/api/stores/{storeId}/menus/{menuId}/options
GET
The text was updated successfully, but these errors were encountered: