From aff4dff4af87420e0fbc73fc88350e5efd9764cc Mon Sep 17 00:00:00 2001 From: Prakasa Date: Thu, 12 Sep 2024 06:32:56 +0700 Subject: [PATCH] docs: fixing invalid gql document how to use --- gql/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql/README.md b/gql/README.md index cb36ead..01e00df 100644 --- a/gql/README.md +++ b/gql/README.md @@ -56,7 +56,7 @@ func main() { gqlCall := gql.NewRequest(useQuery) - err = gqlHttpClient.Run(context.Background(), gqlCall, hello) + err = gqlHttpClient.Run(context.Background(), gqlCall, &hello) if err != nil { log.Panicln(err) }