From d4a4f9f495bcc69f0db799a3cd5cec7967023606 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 9 Mar 2022 20:36:45 +0900 Subject: [PATCH] fix --- docs/insert-and-select.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/insert-and-select.md b/docs/insert-and-select.md index f09e9ea..075cf4a 100644 --- a/docs/insert-and-select.md +++ b/docs/insert-and-select.md @@ -34,9 +34,9 @@ mutation MyMutation { 例として `pages` テーブルに次のデータを書き込みます。 -| 項目 | 説明 | 値 | -| --------- | ------------ | ---------------- | -| `content` | ページの本文 | `{hey: "hello"}` | +| 項目 | 説明 | 値 | +| --------- | ------------ | ----------------- | +| `content` | ページの本文 | `{hey: "hello!"}` | ```graphql @@ -81,10 +81,10 @@ query MyQuery { このとき、引数の `id` として、データに割り当てられた `id` を使います。 -| 項目 | 説明 | 例 | -| --------- | -------------- | ---------------- | -| `id` | ページの識別子 | `2` | -| `content` | ページの本文 | `{hey: "hello"}` | +| 項目 | 説明 | 例 | +| --------- | -------------- | ----------------- | +| `id` | ページの識別子 | `2` | +| `content` | ページの本文 | `{hey: "hello!"}` | レスポンスを見ると、問題なく先ほど書き込まれたのテーブル内データが得られていますね。