From d7b15812f3e5c3402536bee919f2f6b1ccde4d57 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Tue, 4 Feb 2025 11:30:26 -0800 Subject: [PATCH] make responses mandatory for mutations --- schema.graphqls | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.graphqls b/schema.graphqls index b606eb8..6296660 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 {