From 8e7e303c4984cb9d324a7d66b2f9aebf08b6278f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 14 Aug 2023 11:37:36 +0000 Subject: [PATCH] api/graph: fix invalid @access directive in WebhookEvent enum Fixes the following schema error: schema.graphqls:280: Directive access is not applicable on ENUM_VALUE. --- api/graph/schema.graphqls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/graph/schema.graphqls b/api/graph/schema.graphqls index 15ef7a7..b8c2641 100644 --- a/api/graph/schema.graphqls +++ b/api/graph/schema.graphqls @@ -277,7 +277,7 @@ type OAuthClient { } enum WebhookEvent { - JOB_CREATED @access(scope: JOBS, kind: RO) + JOB_CREATED } interface WebhookSubscription { -- 2.38.5