Replies: 9 comments 5 replies
-
reservation
|
Beta Was this translation helpful? Give feedback.
-
Stock (예시)/api/stock/search
|
Beta Was this translation helpful? Give feedback.
-
BookMetas
{
"id": 2,
"title": "TCP IP 윈도우 소켓 프로그래밍",
"author": "김선우",
"publisher": "한빛아카데미",
"isbn": "9788998756444",
"image": "https://image.kyobobook.co.kr/images/book/xlarge/444/x9788998756444.jpg",
"categoryId": 2,
"category": "네트워크",
"pubishedAt": "2022-07-09-22:49:33",
"updatedAt": "2022-07-09-22:49:33"
} {
"id": 3,
"donator": null,
"callSign": "C5.13.v1.c2",
"status": "ok",
"updatedAt": "2022-07-09-22:49:33"
}
개별 도서(book)랑 도서 정보(bookinfo)이 정보가 지나치게 겹침 {
"bookmeta": {
"id": 2,
"title": "TCP IP 윈도우 소켓 프로그래밍",
"author": "김선우",
"publisher": "한빛아카데미",
"isbn": "9788998756444",
"image": "https://image.kyobobook.co.kr/images/book/xlarge/444/x9788998756444.jpg",
"categoryId": 2,
"category": "네트워크",
"pubishedAt": "2022-07-09-22:49:33",
"updatedAt": "2022-07-09-22:49:33"
},
"book": {
"id": 3,
"donator": null,
"callSign": "C5.13.v1.c2",
"status": "ok",
"updatedAt": "2022-07-09-22:49:33"
}
} |
Beta Was this translation helpful? Give feedback.
-
카테고리: 어디에서는 id, 어디에서는 문자열
|
Beta Was this translation helpful? Give feedback.
-
정리 가이드플랫 경로를 지향하기 위해
|
Beta Was this translation helpful? Give feedback.
-
Reviews1. GET 2. GET
3. PUT
4. PATCH와 DELETE에서 사용하는 5. POST body
{
"bookInfoId": 1,
"content": "리뷰 내용"
} 6. GET
{
"items": [
{
"id": 0,
"userId": 1,
"bookInfoId": 0,
"createdAt": "2023-09-16T02:25:55.974Z",
"title": "string",
"content": "string",
"visible": boolean
}
],
"meta": {
"totalItems": 42,
"totalPages": 5
}
} |
Beta Was this translation helpful? Give feedback.
-
질문
|
Beta Was this translation helpful? Give feedback.
-
UsersAPI 명세에서 타입 혼용
|
Beta Was this translation helpful? Give feedback.
-
Likes플랫 경로 사용
중첩 형태 사용
{
"userId": 1,
"bookInfoId": 0
} {
user: {
id: 1
},
book-meta: {
id: 0
},
}
{
"bookInfoId": 0,
"isLiked": true,
"likeNum": 1
} {
book-meta: {
id: 0
},
isLiked: ture
likeNum: 1
} |
Beta Was this translation helpful? Give feedback.
-
담당
@scarf005
@Jiwon-Woo
@honeyl3ee
@nyj001012
고난이도, 후순위
lendingsreservationstags예시: pubdate -> publishedAt
1개, 1개 쿼리(나), N개 쿼리
Beta Was this translation helpful? Give feedback.
All reactions