https://github.com/thomasbnt/nuxtapiprisma
https://github.com/thomasbnt/nuxtapiprisma
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasbnt/nuxtapiprisma
- Owner: thomasbnt
- License: agpl-3.0
- Created: 2025-01-30T07:39:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-30T11:40:02.000Z (4 months ago)
- Last Synced: 2025-01-30T12:28:58.006Z (4 months ago)
- Language: Vue
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nuxt API Prisma
## Routes API
### POST http://localhost:4000/persons
```json
{
"firstname": "Thomas",
"lastname": "Bnt",
"birthday": "1999-01-01T00:00:00.000Z",
"jobs": [
{
"job": "CW",
"position": "Dev",
"start": "2023-01-30T00:00:00.000Z",
"end": null
}
]
}
```### GET http://localhost:4000/list
```json
{
"list": [
{
"id": 1,
"firstname": "Thomas",
"lastname": "Bnt",
"birthday": "1999-01-10T00:00:00.000Z",
"jobs": [
{
"id": 1,
"job": "jkljk",
"position": "jkljklj",
"start": "2025-01-30T00:00:00.000Z",
"end": "2025-01-30T00:00:00.000Z",
"user_id": 1
}
]
},
]
}
```