From dcd1c34cdcce9c6d8bdba377839b22c9a8a7dc3e Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 14 May 2020 10:28:47 -0400 Subject: [PATCH] API: reduce default max complexity to 100 --- api/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/server.go b/api/server.go index e02c244..a06bd94 100644 --- a/api/server.go +++ b/api/server.go @@ -83,7 +83,7 @@ func main() { panic(err) } } else { - complexity = 200 + complexity = 100 } srv := handler.GraphQL( -- 2.38.4