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

https://github.com/dongju93/graphql-server-py

PostgreSQL 데이터를 GraphQL 로 서빙 (query, mutation)
https://github.com/dongju93/graphql-server-py

database fastapi graphql poetry postgresql python server uvicorn

Last synced: 5 months ago
JSON representation

PostgreSQL 데이터를 GraphQL 로 서빙 (query, mutation)

Awesome Lists containing this project

README

          

# GraphQL server

## 데이터
* 데이터베이스 : PostgreSQL
* 데이터 : https://www.postgresqltutorial.com/postgresql-getting-started/load-postgresql-sample-database/

## 서버 실행
```Bash
# 종속성 설치
poetry install
# 실행
poetry run uvicorn app.main:app --port 8200 --reload
```