An open API service indexing awesome lists of open source software.

https://github.com/dev-ashanaur/blog-app-server

This is a simple blog-api service. It is created for only learning purposes. here I used express, graphql, Prisma,PostgreSQL.Thank you.
https://github.com/dev-ashanaur/blog-app-server

graphql postgresql prisma typescript

Last synced: 25 days ago
JSON representation

This is a simple blog-api service. It is created for only learning purposes. here I used express, graphql, Prisma,PostgreSQL.Thank you.

Awesome Lists containing this project

README

          

# Blog app

## requirement
- user can post and pulish blog content
- user can see post
- authentication system
- user can see their own profile

## Table

- post
- id
- title
- content
- authorId
- createdAt
- updatedAt
- published

- user
- id
- name
- email
- password
- createAt
- updateAt
- profile

- profile
- id
- bio
- createAt
- updateAt
- userId

## Technology Stack:
- graphql
- typescript
- postgresql
- prisma