From dcbb8eae01012e6e3aa2c83e06cc50f61176b8ef Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Fri, 5 Jan 2024 17:50:57 +0100 Subject: [PATCH] feat(graphql): increase max_complexity to 300 Signed-off-by: Thomas Citharel --- lib/web/router.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/web/router.ex b/lib/web/router.ex index 9a1534e88..131c44125 100644 --- a/lib/web/router.ex +++ b/lib/web/router.ex @@ -95,7 +95,7 @@ defmodule Mobilizon.Web.Router do forward("/", Absinthe.Plug, schema: Mobilizon.GraphQL.Schema, analyze_complexity: true, - max_complexity: 250 + max_complexity: 300 ) end