- Added basics GET routes for shows

This commit is contained in:
Florian Sylvain
2022-11-10 12:10:28 +01:00
parent 48005aaee2
commit 6e7d8b0801
4 changed files with 28 additions and 28 deletions
-17
View File
@@ -1,17 +0,0 @@
import express from 'express'
import { PrismaClient } from '@prisma/client'
const prisma = new PrismaClient()
export const indexRouter = express.Router()
indexRouter.get('/', async (req, res, next) => {
res.send({message:"voila ton index"})
})
indexRouter.get('/articles', async (req, res, next) => {
const articles = await prisma.article.findMany({})
res.send({
message:"voila tes articles",
articles
})
})
+23
View File
@@ -0,0 +1,23 @@
import express from 'express'
import { PrismaClient } from '@prisma/client'
const prisma = new PrismaClient()
export const showsRouter = express.Router()
showsRouter.get('/', async function(req, res, next) {
const articles = await prisma.serie.findMany()
res.send({articles})
})
showsRouter.get('/:id', async function(req, res, next) {
const articles = await prisma.serie.findMany({
where: {
title: {
contains: req.params.id
}
}
})
res.send({articles})
})
-7
View File
@@ -1,7 +0,0 @@
import express from 'express'
export const usersRouter = express.Router()
usersRouter.get('/', function(req, res, next) {
res.send({message:"voila tes users"})
})