make input mandatory

This commit is contained in:
2025-02-04 11:01:27 -08:00
parent dccee459c3
commit 8ac71090e4

View File

@@ -67,8 +67,8 @@ type Query {
# Mutations # Mutations
type Mutation { type Mutation {
scheduleNotification(input: NotificationInput): NotificationResponse scheduleNotification(input: NotificationInput!): NotificationResponse
cancelNotification(input: NotificationInput): NotificationResponse cancelNotification(input: NotificationInput!): NotificationResponse
} }
input NotificationInput { input NotificationInput {