table | data형식 |
---|---|
user | { "id": number, "name": string, "email": string, "password": string, } |
travels | { "id": number, "email": string, "title": string, "city": string, "startDate": string, "endDate": string, } |
pineds | { "id": number, "name": string, "city": string, "hostName": string, "phone": string, "price": string, "images": string, "nthOfPeople": number, "hompage": string, "description": string, "memo": string, "travelId": number, } |
reserves | { "id": number, "name": string, "city": string, "hostName": string, "phone": string, "price": string, "images": string, "nthOfPeople": number, "hompage": string, "description": string, "checkIn": string, "checkOut": string, "total": string, "travelId": number, } |
pasts | { "id": number, "theme": string, "name": string, "images": string[], "url": string, "description": string, "roomId": number, } |
rooms | { "id": number, "name": string, "city": string, "hostName": string, "phone": string, "price": string, "images": string, "nthOfPeople": number, "hompage": string, "description": string, } |
http://localhost:4000/travels
http://localhost:4000/travels?email=${email}
http://localhost:4000/travels/${travelId}
http://localhost:4000/travels/${travelId}?_embed=reserves
http://localhost:4000/reserves/${id}
http://localhost:4000/reserves
http://localhost:4000/pineds?travelId=${travelId}
http://localhost:4000/pineds
http://localhost:4000/pineds/${id}
http://localhost:4000/pineds?travelId=${travelId}
http://localhost:4000/pineds/${id}
http://localhost:4000/pineds/${id}
http://localhost:4000/travels/${travelId}?_embed=reserves
http://localhost:4000/pasts?roomId=${id}
http://localhost:4000/pasts
http://localhost:4000/pasts/${id}