Merge pull request #2796 from aminsource/patch-1

Update graphql.md
This commit is contained in:
Jim LAURIE 2019-02-09 10:15:34 +01:00 committed by GitHub
commit 7f211d1753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,9 +275,9 @@ type Query {
// Mutations to create, update or delete a post.
type Mutation {
createProduct(input: createProductInput): createProductPayload!
updateProduct(input: updateProductInput): updateProductPayload!
deleteProduct(input: deleteProductInput): deleteProductPayload!
createPost(input: createPostInput): createPostPayload!
updatePost(input: updatePostInput): updatePostPayload!
deletePost(input: deletePostInput): deletePostPayload!
}
```