This commit is contained in:
Nebel 2022-03-09 20:36:45 +09:00 committed by GitHub
parent 873ffaf323
commit d4a4f9f495
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,8 +35,8 @@ mutation MyMutation {
例として `pages` テーブルに次のデータを書き込みます。
| 項目 | 説明 | 値 |
| --------- | ------------ | ---------------- |
| `content` | ページの本文 | `{hey: "hello"}` |
| --------- | ------------ | ----------------- |
| `content` | ページの本文 | `{hey: "hello!"}` |
<!-- prettier-ignore-start -->
```graphql
@ -82,9 +82,9 @@ query MyQuery {
このとき、引数の `id` として、データに割り当てられた `id` を使います。
| 項目 | 説明 | 例 |
| --------- | -------------- | ---------------- |
| --------- | -------------- | ----------------- |
| `id` | ページの識別子 | `2` |
| `content` | ページの本文 | `{hey: "hello"}` |
| `content` | ページの本文 | `{hey: "hello!"}` |
レスポンスを見ると、問題なく先ほど書き込まれたのテーブル内データが得られていますね。