Make createdAt/updatedAt non-nullable for NOTIFIED

- Follow @Tirokk PR review suggestion
This commit is contained in:
mattwr18 2019-11-08 17:54:02 +01:00
parent 288787bcb9
commit f650c5cc05

View File

@ -2,8 +2,8 @@ type NOTIFIED {
id: ID!
from: NotificationSource
to: User
createdAt: String
updatedAt: String
createdAt: String!
updatedAt: String!
read: Boolean
reason: NotificationReason
}