~comcloudway/builds.sr.ht

8e7e303c4984cb9d324a7d66b2f9aebf08b6278f — Simon Ser 1 year, 2 months ago 8ce0ebf
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.
1 files changed, 1 insertions(+), 1 deletions(-)

M api/graph/schema.graphqls
M api/graph/schema.graphqls => api/graph/schema.graphqls +1 -1
@@ 277,7 277,7 @@ type OAuthClient {
}

enum WebhookEvent {
  JOB_CREATED @access(scope: JOBS, kind: RO)
  JOB_CREATED
}

interface WebhookSubscription {