From f2d0112ba89951b4dae65c86066949fc76d40eb5 Mon Sep 17 00:00:00 2001 From: Hooman Amin Date: Sat, 9 Feb 2019 10:14:43 +0330 Subject: [PATCH] Update graphql.md --- docs/3.x.x/guides/graphql.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/3.x.x/guides/graphql.md b/docs/3.x.x/guides/graphql.md index 48dfa1752f..f98daf645c 100644 --- a/docs/3.x.x/guides/graphql.md +++ b/docs/3.x.x/guides/graphql.md @@ -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! } ```