Created
January 8, 2022 09:06
-
-
Save skolhustick/1540fe481d6ec0f72e54a37d07885386 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// pages/api/user | |
import { | |
createUser, | |
deleteUser, | |
getAllUsers, | |
getUser, | |
updateUser | |
} from '../../prisma/user' | |
export default async function handle (req, res) { | |
try { | |
switch (req.method) { | |
case 'GET': { | |
if (req.query.id) { | |
// Get a single user if id is provided is the query | |
// api/users?id=1 | |
const user = await getUser(req.query.id) | |
return res.status(200).json(user) | |
} else { | |
// Otherwise, fetch all users | |
const users = await getAllUsers() | |
return res.json(users) | |
} | |
} | |
case 'POST': { | |
// Create a new user | |
const { email, name, birthYear } = req.body | |
const user = await createUser(email, name, birthYear) | |
return res.json(user) | |
} | |
case 'PUT': { | |
// Update an existing user | |
const { id, ...updateData } = req.body | |
const user = await updateUser(id, updateData) | |
return res.json(user) | |
} | |
case 'DELETE': { | |
// Delete an existing user | |
const { id } = req.body | |
const user = await deleteUser(id) | |
return res.json(user) | |
} | |
default: | |
break | |
} | |
} catch (error) { | |
return res.status(500).json({ ...error, message: error.message }) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment