mirror of
https://github.com/kou029w/hasura-rest-hands-on.git
synced 2025-01-18 16:08:14 +00:00
1.1 KiB
1.1 KiB
REST APIエンドポイントの作成
get page GET page/:id
query getPage($id: Int!) {
page: pages_by_pk(id: $id) {
id
content
}
}
put page PUT page/:id
mutation putPage($id: Int!, $content: jsonb!) {
page: insert_pages_one(
object: { id: $id, content: $content }
on_conflict: { constraint: pages_pkey, update_columns: content }
) {
id
content
}
}