make responses mandatory for mutations

This commit is contained in:
2025-02-04 11:30:26 -08:00
parent 1627bc39fe
commit d7b15812f3

View File

@@ -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 {