From e697fd89b8961f5f7a42fb125329f2e08a62ba5b Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 12 Feb 2025 19:45:16 -0800 Subject: [PATCH] add isNotificationScheduled resolver for Query type --- schema.graphqls | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schema.graphqls b/schema.graphqls index 6296660..c5a6726 100644 --- a/schema.graphqls +++ b/schema.graphqls @@ -63,6 +63,8 @@ type Shuttle { type Query { systems: [System!]! system(id: ID): System + + isNotificationScheduled(input: NotificationInput!): Boolean } # Mutations