Skip to content

Commit

Permalink
指摘点の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
okazy committed Aug 4, 2020
1 parent 2ba45d8 commit 065c878
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions docs/_pages/customize/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,7 @@ permalink: /customize/query

## Query/Mutationの追加

特定のインタフェースを実装したクラスを作成することでQuery/Mutationの追加が可能です

| Method | Interface |
|----------------|-------------------------------------|
| Query | Plugin\Api\GraphQL\Query |
| Mutation | Plugin\Api\GraphQL\Mutation |
Query は `Plugin\Api\GraphQL\Query` インタフェースを、 Mutation は `Plugin\Api\GraphQL\Mutation` インタフェースを実装したクラスを作成することで Query/Mutation の追加が可能です。

`Hello Query!` の文字列を返す最小のQueryの実装例は以下です。

Expand Down Expand Up @@ -55,7 +50,7 @@ query {
```json
{
"data": {
"hello": null
"hello": "Hello Query!"
}
}
```
Expand Down

0 comments on commit 065c878

Please sign in to comment.