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
GET
LEFT JOIN
Published Schedule
server/queries/published_schedule.sql
GET/:id
POST
PUT/:id
DELETE/:id
routes/publishedSchedule.js
app.js
The text was updated successfully, but these errors were encountered:
Modify the primary GET query to also retrieve the title and host for each event in the Published Schedule by using LEFT JOIN
Should the GET/:id route remain unchanged?
Sorry, something went wrong.
Modify the primary GET query to also retrieve the title and host for each event in the Published Schedule by using LEFT JOIN Should the GET/:id route remain unchanged?
Thanks for catching that! Both should be updated in the same way
seancfong
Philip-Jian
Successfully merging a pull request may close this issue.
Instructions
GET
query to also retrieve the title and host for each event in the Published Schedule by usingLEFT JOIN
Published Schedule
, which will allow us to access the data from the frontendNotes
server/queries/published_schedule.sql
as a jumping-off point!Acceptance Criteria
Routes should be created for the following:
GET
- Returns all data from the published_schedule tableGET/:id
- returns the rows that match the given idPOST
- Adds a new row to the published_schedule tablePUT/:id
- Updates an existing row given an idDELETE/:id
- deletes an existing row given an idLogistics:
routes/publishedSchedule.js
app.js
should be updated accordinglyserver/queries/published_schedule.sql
once this task is completeResources
As always, feel free to message Michael and Michelle if you have any questions!
The text was updated successfully, but these errors were encountered: