From 8ac71090e4db49a7e217b2ad0eb274e5de6fd4db Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 4 Feb 2025 11:01:27 -0800 Subject: [PATCH] make input mandatory --- schema.graphqls | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.graphqls b/schema.graphqls index da87864..b606eb8 100644 --- a/schema.graphqls +++ b/schema.graphqls @@ -67,8 +67,8 @@ type Query { # Mutations type Mutation { - scheduleNotification(input: NotificationInput): NotificationResponse - cancelNotification(input: NotificationInput): NotificationResponse + scheduleNotification(input: NotificationInput!): NotificationResponse + cancelNotification(input: NotificationInput!): NotificationResponse } input NotificationInput {