From f650c5cc05ab63e6217c408768ec0c702e490426 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Fri, 8 Nov 2019 17:54:02 +0100 Subject: [PATCH] Make createdAt/updatedAt non-nullable for NOTIFIED - Follow @Tirokk PR review suggestion --- backend/src/schema/types/type/NOTIFIED.gql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/schema/types/type/NOTIFIED.gql b/backend/src/schema/types/type/NOTIFIED.gql index 1182f2743..5557cbd54 100644 --- a/backend/src/schema/types/type/NOTIFIED.gql +++ b/backend/src/schema/types/type/NOTIFIED.gql @@ -2,8 +2,8 @@ type NOTIFIED { id: ID! from: NotificationSource to: User - createdAt: String - updatedAt: String + createdAt: String! + updatedAt: String! read: Boolean reason: NotificationReason }