ahy4 / deno-graphql-sample

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple deno API

学習が足りてないのでなんか微妙すぎる

あとでちゃんと勉強しようとおもった

次やること

DIを使うために、newableに書き換える DIを整備する

TodoList DDL

key type example description
id int 2 unique key of todolist
name string "Sample TodoList" name of todolist
created_at date undecided created timestamp
updated_at date undecided updated timestamp

Todo DDL

key type example description
id int 4 unique key of todo
todolist_id int 2 foreign key of todolist
name string "Sample Todo" name of todo
is_favorite boolean false flag for favorite todo
deadline date undecided task deadline
created_at date undecided created timestamp
updated_at date undecided updated timestamp

About


Languages

Language:TypeScript 95.2%Language:Shell 4.8%