From f4d0f50ff351239e3a5960f9931b0f2b76284e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Cha=C3=ADn?= Date: Thu, 20 Jul 2023 13:26:06 +0000 Subject: [PATCH] fix postData's operationName on http-post example --- examples/http-post/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http-post/main.go b/examples/http-post/main.go index 09d108ce..ff433f19 100644 --- a/examples/http-post/main.go +++ b/examples/http-post/main.go @@ -11,7 +11,7 @@ import ( type postData struct { Query string `json:"query"` - Operation string `json:"operation"` + Operation string `json:"operationName"` Variables map[string]interface{} `json:"variables"` }