From 76e9d99fb947884996b7b85f562fcb532f41b96a Mon Sep 17 00:00:00 2001 From: Tyler Caceres Date: Fri, 23 Jun 2023 06:56:53 -0400 Subject: [PATCH] Update graphql.md (#2014) --- graphql.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphql.md b/graphql.md index f03d722fe..b4491d887 100644 --- a/graphql.md +++ b/graphql.md @@ -218,7 +218,7 @@ See: [sogko/graphql-shorthand-notation-cheat-sheet](https://raw.githubuserconten ```js type Mutation { - users(params: ListUsersInput) [User]! + users(params: ListUsersInput): [User]! } ``` @@ -258,7 +258,7 @@ type Album { ยทยทยท } union Result = Artist | Album type Query { - search(q: String) [Result] + search(q: String): [Result] } ``` {: data-line="4"}